100. Same Tree
題目原文
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: false解題思路
程式解答
Last updated