100 Same Tree
100. Same Tree
1. Question
Input:
1 1
/ \ / \
2 3 2 3
[1,2,3], [1,2,3]
Output: trueInput:
1 1
/ \
2 2
[1,2], [1,null,2]
Output: false2. Implementation
3. Time & Space Complexity
Last updated