Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 밥먹고
- 토이프로젝트
- 바질토마토뭐시기
- 발더스게이트
- 노노그램
- 발더스모드
- 잠실새내
- 서울제빵소
- 메일우유
- 버즈2프로
- LeetCode
- 눈알빠지겠네
- 알고리즘테스트
- 뜨아거
- 메탈퍼즐
- 3d퍼즐
- 하스스톤
- 나쫌
- 코딩테스트
- 송리단
- 발더스3
- 취미
- 맛집
- 미앤아이
- 누룽지소금빵
- 천등
- 게임
- javascript
- DIY
- 코테
Archives
- Today
- Total
목록2022/12/07 (2)
.Zzumbong
[leetCode/JS] 938. Range Sum of BST
난이도 [ 😊 ] Easy 문제 설명 Given the root node of a binary search tree and two integers low and high, return the sum of values of all nodes with a value in the inclusive range [low, high]. 2진 트리의 노드 값이 low, high 범위에 들어오면 모두 더해서 return 한다. 입출력 예 Example 1: Input: root = [10,5,15,3,7,null,18], low = 7, high = 15 Output: 32 Explanation: Nodes 7, 10, and 15 are in the range [7, 15]. 7 + 10 + 15 = 32. Exam..
coding test/leetCode
2022. 12. 7. 09:42