1. 오늘의 문제 : Invert Binary Tree
https://leetcode.com/problems/invert-binary-tree/2. 풀이
class Solution {
public TreeNode invertTree(TreeNode root) {
if(root == null) return root;
TreeNode temp = root.left;
root.left = root.right;
root.right = temp;
invertTree(root.left);
invertTree(root.right);
return root;
}
}
https://devraphy.tistory.com/569
참고 했습니다. 두 개를 바꾸는 것은 알았는데 이걸 재귀로 어떻게 써야할지 모르겠더라고요... 재귀함수 문제를 더 풀어봐야할 것 같습니다.
#99클럽 #코딩테스트 준비 #개발자 취업 #항해99 #TIL
'항해99_코테스터디' 카테고리의 다른 글
[항해99]99클럽 코테 스터디 8일차 TIL + 탐욕법(Greedy) (0) | 2024.06.05 |
---|---|
[항해99]99클럽 코테 스터디 7일차 TIL + 깊이/너비 우선 탐색 (DFS/BFS) (0) | 2024.06.03 |
[항해99]99클럽 코테 스터디 5일차 TIL + 깊이/너비 우선 탐색 (DFS/BFS) (0) | 2024.06.02 |
[항해99]99클럽 코테 스터디 4일차 TIL + 깊이/너비 우선 탐색 (DFS/BFS) (0) | 2024.06.01 |
[항해99]99클럽 코테 스터디 3일차 TIL + 깊이/너비 우선 탐색 (DFS/BFS) (0) | 2024.05.31 |