Easy
Given the root of a binary tree, return its preorder traversal (node, left, right) as a list of values.
root
Input: root = [1,null,2,3] Output: [1,2,3]
Input: root = [1,2,3,4,5] Output: [1,2,4,5,3]