Update binary_tree.md

This commit is contained in:
Yudong Jin
2022-12-05 00:13:48 +08:00
committed by GitHub
parent 003dcc56f4
commit f1ba6c679c

View File

@@ -69,7 +69,6 @@ comments: true
this.left = (left === undefined ? null : left) // 左子结点指针
this.right = (right === undefined ? null : right) // 右子结点指针
}
```
=== "TypeScript"