Binary Tree Inorder/Preorder/Postorder Traversal (M/M/H)
Description(Inorder,94):Givenabinarytree,returntheinordertraversalofitsnodes'values.Example:Input:[1,null,2,3]12/3Output:[1,3,2]Followup:Recursivesolutionistrivial,couldyoudoititeratively?Solutions:Tr