Files
Hot-100-Algorithm/链表/LRU缓存/main.go
2025-08-26 06:18:10 +08:00

15 lines
152 B
Go

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