添加新题目
This commit is contained in:
13
链表/排序链表/main.go
Normal file
13
链表/排序链表/main.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package main
|
||||
|
||||
type ListNode struct {
|
||||
Val int
|
||||
Next *ListNode
|
||||
}
|
||||
|
||||
func main() {
|
||||
|
||||
}
|
||||
func sortList(head *ListNode) *ListNode {
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user