Files
Hot-100-Algorithm/链表/LRU缓存/main.go

15 lines
152 B
Go
Raw 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
}