0145. Binary Tree Postorder Traversal
Last updated
Last updated
**Input:** root = [1,null,2,3]
**Output:** [3,2,1]**Input:** root = []
**Output:** []**Input:** root = [1]
**Output:** [1]**Input:** root = [1,2]
**Output:** [2,1]**Input:** root = [1,null,2]
**Output:** [2,1]