▶144 - Binary Tree Preorder Traversal ▶문제 Given the root of a binary tree, return the preorder traversal of its nodes' values. ▶예제 Input: root = [1,null,2,3] Output: [1,2,3] Input: root = [] Output: [] Input: root = [1] Output: [1] ▶풀이 자료구조 때 배운 방식으로 preorder를 구성해서 풀었다.preorder는 left, right를 가기 전에 현재 node의 value값을 저장하거나 출력하는 방식이다. # Definition for a binary tree node. # class TreeNode: # def __in..