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