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
- 천등
- 맛집
- 바질토마토뭐시기
- 노노그램
- 송리단
- javascript
- 3d퍼즐
- 코테
- 뜨아거
- 메탈퍼즐
- 나쫌
- 게임
- 알고리즘테스트
- 버즈2프로
- 잠실새내
- 발더스모드
- 메일우유
- 눈알빠지겠네
- DIY
- 누룽지소금빵
- 밥먹고
- 발더스3
- 코딩테스트
- 하스스톤
- 취미
- 발더스게이트
- 토이프로젝트
- 미앤아이
- 서울제빵소
- LeetCode
Archives
- Today
- Total
목록2022/12/09 (1)
.Zzumbong
[leetCode/JS] 1026. Maximum Difference Between Node and Ancestor
난이도 [ 🤔 ] Medium 문제 설명 Given the root of a binary tree, find the maximum value v for which there exist different nodes a and b where v = |a.val - b.val| and a is an ancestor of b. A node a is an ancestor of b if either: any child of a is equal to b or any child of a is an ancestor of b. 이진트리의 상위, 하위 노드의 a-b 의 최대값을 찾는 문제다. 입출력 예 Example 1: Input: root = [8,3,10,1,6,null,14,null,null,4,7,13] Outpu..
coding test/leetCode
2022. 12. 9. 10:48