You are given the root of a binary tree.
Your task is to compute the level order traversal of its nodes' values, collecting all node values level by level.
Return a single list of numbers
[5, 3, 8, 1, 4, 6, 9]
The level order traversal visits nodes level by level: first 5, then 3 and 8, followed by 1, 4, 6, and 9.
None
[]
An empty tree results in an empty list.
[5, 3, 8, 1, 4, 6, 9]