mirror of
https://github.com/krahets/hello-algo.git
synced 2026-08-19 06:50:59 +00:00
Fix multilingual content typos (#1958)
This commit is contained in:
@@ -181,8 +181,8 @@
|
||||
```kotlin title=""
|
||||
/* 二分木ノードクラス */
|
||||
class TreeNode(val _val: Int) { // ノード値
|
||||
val left: TreeNode? = null // 左子ノード参照
|
||||
val right: TreeNode? = null // 右子ノード参照
|
||||
var left: TreeNode? = null // 左子ノード参照
|
||||
var right: TreeNode? = null // 右子ノード参照
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user