package main type ListNode struct { Val int Next *ListNode } func main() { } func sortList(head *ListNode) *ListNode { return nil }