Files

16 lines
153 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 reverseKGroup(head *ListNode, k int) *ListNode {
return nil
}