Swift) LeetCode(Easy) - Symmetric Tree (BFS&Recursive)
leetcode.com/problems/symmetric-tree/ Symmetric 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 개인적으로 쫌 어려웠습니다 ㅎㅎㅎㅎ Easy 문제인데,,, 처음으로 배열형 트리가 아닌 리스트로 된 트리 문제를 푸는 것이고 대칭인지 아닌지 비교하는 것은 처음이여서,,, ** 문제 ** 문제는 간단합니다. 루트 노드를 기준으로 반으로 접었을 때, 대칭이 되면 됩니다. ** 해결 방법 ** 일단 ,,, 이 코드가 잘 돌..
2020. 8. 18.