增加新题目

This commit is contained in:
JACKYMYPERSON
2025-09-01 20:17:03 +08:00
parent 72f4dca9ed
commit 14a6771b9a
7 changed files with 188 additions and 4 deletions

View File

@@ -5,10 +5,17 @@ type ListNode struct {
Next *ListNode
}
type LRUCache struct {
}
func Constructor(capacity int) LRUCache {
return LRUCache{}
}
func (this *LRUCache) Get(key int) int {
return 0
}
func main() {
}
func reverseKGroup(head *ListNode, k int) *ListNode {
return nil
}