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 |
Tags
- Data Structure
- java
- bit manipulation
- 파이썬
- geometry
- sorting
- Math
- Binary Search
- Counting
- implement
- Class
- Tree
- Method
- 코테
- two pointers
- Number Theory
- Matrix
- 코딩테스트
- hash table
- 자바
- dynamic programming
- SQL
- Stack
- database
- greedy
- Binary Tree
- string
- 구현
- simulation
- array
Archives
- Today
- Total
목록depth first tree (3)
코린이의 소소한 공부노트
[LeetCode/Easy] 2331. Evaluate Boolean Binary Tree
1. Input 1) TreeNode root 2. Output 1) root에 있는 조건식을 계산한 결과를 반환 - leaf node: 0(false), 1(true) - non-leaf node: 2(OR), 3(AND) 3. Constraint 1) 노드 수의 범위는 [1, 1000]이다. 2) 0
코딩테스트 풀이/JAVA
2023. 6. 26. 16:02
[LeetCode/Easy] 1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree
1. Input 1) final TreeNode original 2) final TreeNode cloned - original을 복사한 트리 3) final TreeNode target - original의 노드 중 하나 2. Output 1) cloned에서 target과 같은 것을 찾아 반환 3. Constraint 1) 트리의 노드 수의 범위는 [1, 10^4]이다. 2) 노드의 값에는 중복이 없다. 3) 타겟 노드는 null이 아니다. 4. Example Input: tree = [7,4,3,null,null,6,19], target = 3 -> Output: 3 설명: 왼쪽 트리가 original, 오른쪽 트리가 cloned, 연두색이 target, 노란색이 반환해야 할 노드이다. 5. Cod..
코딩테스트 풀이/JAVA
2023. 6. 12. 01:36