[LeetCode] 101. Symmetric Tree
·
코딩테스트
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 첫 번째 시도 ( Fail ) 리스트에 각 숫자를 담아서 맨 앞이랑 맨 뒤를 짝을 지어 비교하면 될 것이라고 생각하고 코드를 구현했다. class Solution{ ArrayList list = new ArrayList(); public void align(TreeNode root){ if (root != null){ ..