profile
캬-!
태그 목록
전체보기 (111)JavaScript(43)Java(37)leetcode(30)array(15)algorithm(13)recursion(13)Sort(7)easy(7)String(5)binary(5)Node(4)daily(4)DP(4)List(4)DFS(3)BinaryTree(3)프로그래머스(3)sum(3)set(3)React(3)medium(3)typescript(3)reverse(3)iterable(3)tree(3)stack(3)queue(3)BFS(3)integer(3)binary tree(3)recursive(2)palindrome(2)max(2)this(2)도메인(2)bit(2)matrix(2)sliding(2)bitwise(2)stream(2)Problem(2)iterator(2)blog(2)ES6(2)scope(2)python(2)Coding(2)arrow function(2)도메인 지식(2)merge(1)http(1)bind(1)linked list(1)bipartite(1)back(1)401(1)coin(1)heap(1)일반함수(1)bearer(1)anagram(1)aws lambda(1)null == undefined(1)oAuth(1)sequence(1)generator(1)validation(1)responseType(1)rest parameter(1)나머지 매개변수(1)url(1)color(1)false(1)선언식(1)표현식(1)LOL(1)Module(1)알고리즘(1)Trie(1)null(1)Object.assign(1)spead operator(1)전개 연산자(1)정리(1)useEffect(1)byte(1)img(1)unmount(1)divide(1)Quick Sort(1)number(1)async(1)Coursera(1)for(1)network(1)cidr(1)subnetmask(1)domain(1)host(1)고차함수(1)ip(1)값지향(1)Generic(1)2nd(1)dynamic connectivity(1)division(1)IO(1)hoisting(1)POWER(1)압축(1)frequency(1)REST API(1)JWT(1)iter(1)arraybuffer(1)Symbol.iterator(1)next(1)circular(1)cycle(1)repeat(1)Blob(1)addition(1)two pointer(1)lexicographical(1)universal value(1)regex(1)bcrypt(1)base64(1)206(1)context(1)amazon(1)authorization(1)palindromic(1)Failed(1)inversion(1)State(1)DUPLICATE(1)axios(1)programming(1)update(1)design(1)CSS(1)hook(1)Parentheses(1)condition(1)reduce(1)arithmetic(1)splice(1)HashSet(1)type(1)Pop(1)unival(1)uf(1)스타트업(1)HashMap(1)화살표 함수(1)scheduling(1)정렬(1)GCD(1)disjoint set(1)Markdown(1)minimum(1)aws(1)subsequences(1)contraints(1)객체지향(1)Unauthorized(1)diff(1)Map(1)missing(1)endswith(1)backwards(1)arraLike(1)subtraction(1)hash(1)time(1)timeover(1)BigInt(1)level(1)algorithm1(1)redux(1)closure(1)private(1)static ip(1)dynamic ip(1)exception(1)Web API(1)engine(1)apply(1)call(1)permutation(1)depth(1)search(1)function(1)binary_search(1)undefined(1)플랫폼(1)배열(1)component(1)math(1)substring(1)indices(1)disk(1)the first one alphabetically(1)UnionFind(1)API(1)Sequelize(1)binarystring(1)greedy(1)muliplication(1)header(1)subarray(1)push(1)Graph(1)라이브러리(1)프레임워크(1)OOP(1)Symbol(1)

Prevent React component state from updating when unmounted 갱신 막기

참고: Prevent "React state update on unmounted component" warning when setting state on async callbackAsk Question

2022년 6월 24일
·
0개의 댓글
·

Axios로 이미지 요청해 렌더링

문제: img tag 요청이 401 status를 response unauthorized해결: fetch or axios를 사용해 http request에 Authorization 헤더를 주입해 주어야 한다why? Authorization: Bearer JWT toke

2022년 6월 22일
·
0개의 댓글
·
post-thumbnail

[leetcode]

Time: O(4^4)space: O(4^4)

2021년 4월 8일
·
0개의 댓글
·
post-thumbnail

[leetcode] Minimum Operations to Make Array Equal

Time: O(1)Space: O(1)

2021년 4월 6일
·
0개의 댓글
·

[leetcode] Global and Local Inversions

problem code 1st try: check A[i] > A[i +2], if yes, return false

2021년 4월 5일
·
0개의 댓글
·
post-thumbnail

[leetcode] Design Circular Queue

Time: O(N), deleteSpace: O(N)

2021년 4월 4일
·
0개의 댓글
·
post-thumbnail

[leetcode] Reordered Power of 2

Time: O(log^2N), count(1 << i) logN, equals LogNSpace: O(Log^N), why? there are 30 arrays for power of 2s < 10000000000

2021년 3월 21일
·
0개의 댓글
·

Sequlize 사용 시 bcrypt error

문제1: bcypt.hash를 사용해 model.create(data) 할 때The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like

2021년 3월 15일
·
0개의 댓글
·
post-thumbnail

[leetcode] Binary Trees With Factors

problem code

2021년 3월 14일
·
0개의 댓글
·

[leetcode] Coin Change

problem co

2021년 3월 12일
·
0개의 댓글
·
post-thumbnail

[leetcode] Integer to Roman

add 4xx 9xx where x is 0 or '', this problem becomes a lot easier.Time: O(1)Space: O(1)

2021년 3월 11일
·
0개의 댓글
·

[BLOG] facebook 댓글 플러그인

댓글 플러그인페이스북에서 제공하는 댓글 플러그인 사용

2021년 3월 10일
·
0개의 댓글
·
post-thumbnail

(작성 중)[leetcode] Add One Row to Tree

problem c

2021년 3월 10일
·
0개의 댓글
·
post-thumbnail

[daily coding] Maximum continuous sum

problem code 1st try: Brute force Time: O(N^3) Space: O(1) 2nd try: sliding door

2021년 3월 10일
·
0개의 댓글
·

[BLOG] 2. 구도 마크다운 css

1일차 구도 마크다운 파일 읽어오기 간단한 css

2021년 3월 9일
·
0개의 댓글
·
post-thumbnail

[leetcode] Remove Palindromic Subsequences

need to understand difference between substrings and subsequencesabbab => subsequences = aa, bbb, abba, abbab, ... is palindromic subsequenceswe can r

2021년 3월 9일
·
0개의 댓글
·

[blog] 1. start

블로그 만들어야지만 생각만 한지 오래만들자는 느낌이 왔을 때 만들자정리용 - 일정 기간 공부한 내용 복습할 겸 둘러보기홍보용 - 그냥?부가수입 - 과연?reactreduxtypescript - 연습할겸helmetgoogle analyticsgoogle adsensegi

2021년 3월 8일
·
0개의 댓글
·
post-thumbnail

[leetcode] Design HashMap

problem code 1st try: simple

2021년 3월 7일
·
0개의 댓글
·