Files

14 lines
139 B
Go
Raw Permalink Normal View History

2025-08-26 06:18:10 +08:00
package main
type ListNode struct {
Val int
Next *ListNode
}
func main() {
}
func sortList(head *ListNode) *ListNode {
return nil
}