Interview Guides
Given the root of a binary tree, return a list of its node values in inorder traversal order. The input is the root node (or null for an empty tree), and the output is an array of integers visited in the order: left subtree, current node, right subtree.
0 <= number of nodes <= 10^4-10^4 <= Node.val <= 10^4