Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
添加 链表理论基础.md Scala版本
  • Loading branch information
wzqwtt committed May 11, 2022
commit 558dc3343150b1a91a1f307c0bb1fcb881abcd20
7 changes: 7 additions & 0 deletions problems/链表理论基础.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,13 @@ type ListNode struct {
}
```

Scala:
```scala
class ListNode(_x: Int = 0, _next: ListNode = null) {
var next: ListNode = _next
var x: Int = _x
}
```


-----------------------
Expand Down