https://leetcode.com/problems/binary-tree-paths/ Binary Tree Paths - 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 이진트리의 root가 주어졌을 때, root부터 leaf 까지의 모든 경로를 string vector에 담아 리턴하는 문제다. 문자열로 반환해야 해서 int 타입의 val을 string으로 변환하는 to_string 함수를 사용한다. 양쪽의 자식노드가 모두 없으면 지금까지 경로를 벡터에 담아 종..