https://leetcode.com/problems/deepest-leaves-sum/ Deepest Leaves Sum - 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 이진 트리가 주어졌을 때, 가장 깊은 서브트리가 아닌 가장 깊은 레벨의 합이다! 2번째 풀었는데 볼 때마다 헷갈리는거 같다. 3개의 풀이를 냈었다. 첫번째는 직접 푼거같고.. 두번째는 답안지를 본거같다. 세번째는 첫번째랑 별 다를게 없다. /** * Definition for a binary..