https://leetcode.com/problems/binary-tree-level-order-traversal/ Binary Tree Level Order Traversal - 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 이진 트리가 주어졌을 때, 레벨별로 Node의 값을 이중 벡터에 담아 리턴하면 되는 문제다. 1레벨 값: ~~~~ 2레벨 값: ~~~~ 3레벨 값: ~~~~ 4레벨 값: ~~~~ root부터 leaf node까지 내려가며 벡터에 추가하면 ..