Medium
Given the root of a binary tree, return its level-order traversal — a list of levels, each a list of node values from left to right. On this judge levels are shown separated by |.
Input: root = [3,9,20,null,null,15,7] Output: [[3],[9,20],[15,7]]
Input: root = [] Output: []