114. Flatten Binary Tree to Linked List
problem description
1
/ \
2 5
/ \ \
3 4 61
\
2
\
3
\
4
\
5
\
6algorithm thought
code
algorithm analysis
Last updated