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