Your question is Binary Tree Inorder Traversal. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
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.
def inorder_traversal(root):