일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 자바스크립트 jQuery
- 깃허브
- 자바스크립트 API
- 보안뉴스한줄요약
- 카카오프로젝트
- ES6
- 자바스크립트 prototype
- 보안뉴스 한줄요약
- 오라클
- 파이썬
- 자바스크립트 node
- 보안뉴스
- 카카오프로젝트100
- php
- 랜섬웨어
- 보안뉴스요약
- javascript
- 다크웹
- Oracle SQL
- python
- 카카오프로젝트 100
- 자바스크립트 element api
- GIT
- 보안뉴스 요약
- numpy
- 자바스크립트
- oracle
- 자바스크립트 객체
- 자바스크립트 기본 문법
- oracle db
- Today
- Total
목록전체 글 (507)
FU11M00N
Clone Graph [주어지는 그래프 복제하기] 제약 조건 The number of nodes in the graph is in the range [0, 100]. 1
Kth Largest Element in an Array [정렬을 하지 않고 k 번째로 큰 수 찾기] 제약 조건 1
Implement Trie (Prefix Tree) [Trie 자료구조] 제약 조건 1
Average of Levels in Binary Tree [이진트리의 각 레벨에서의 평균 값 구하기] 제약 조건 The number of nodes in the tree is in the range [1, 10^4]. -2^31
Binary Tree Right Side View [오른쪽 시야에서 트리 보기] 제약 조건 The number of nodes in the tree is in the range [0, 100]. -100
Kth Smallest Element in a BST [이진 탐색 트리, k번째로 작은 수 찾기] 제약 조건 The number of nodes in the tree is n. 1
Minimum Absolute Difference in BST [이진 탐색 트리, 가장 짧은 간격 찾기] 제약 조건 The number of nodes in the tree is in the range [2, 10^4]. 0 { if (!data) { return; } recursive(data.left); min = Math.min(min, Math.abs(tmp - data.val)); tmp = data.val; recursive(data.right); }; recursive(root); return min; };