출처: https://leetcode.com/problems/maximum-depth-of-binary-tree/ Maximum Depth of 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 오랜만에 푸는 문제라 Easy로 선택 이진트리가 주어졌을 때 Depth의 최대치를 구하는 문제. 그냥 left와 right 따라 들어가며 얼만큼 내려가는지 구하면 된다. left와 right 결과 중에서 더 큰 수치를 root의 depth까지 포함해..