99. Recover Binary Search Tree
problem description
Input: [1,3,null,null,2]
1
/
3
\
2
Output: [3,1,null,null,2]
3
/
1
\
2algorithm thought
code
algorithm analysis
Last updated