Update
This commit is contained in:
@@ -248,7 +248,7 @@ class Solution {
|
||||
return root;
|
||||
}
|
||||
|
||||
// 左闭右闭区间[left, right)
|
||||
// 左闭右闭区间[left, right]
|
||||
private TreeNode traversal(int[] nums, int left, int right) {
|
||||
if (left > right) return null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user