https://leetcode.com/problems/invert-binary-tree/ Invert Binary Tree - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 이진 트리가 주어졌을 때 모든 하위 트리를 좌우 대칭으로 노드들을 swap 하는 문제 한꺼번에 보면 순간 멈칫하지만 순차적으로 바꿔나가면 내려갈 수록 위에서 이미 swap됐기 때문에 해당 level에서의 좌우 swap만 생각하면 된다. /** * Definition for a binary t..