We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c7ec6b6 + 7c83141 commit 24a7443Copy full SHA for 24a7443
problems/二叉树理论基础.md
@@ -215,7 +215,7 @@ class TreeNode:
215
```
216
217
Go:
218
-```
+```go
219
type TreeNode struct {
220
Val int
221
Left *TreeNode
@@ -224,7 +224,7 @@ type TreeNode struct {
224
225
226
JavaScript:
227
+```javascript
228
function TreeNode(val, left, right) {
229
this.val = (val===undefined ? 0 : val)
230
this.left = (left===undefined ? null : left)
0 commit comments