Files
Hot-100-Algorithm/链表/LRU缓存/main.go
JACKYMYPERSON 14a6771b9a 增加新题目
2025-09-01 20:17:03 +08:00

22 lines
227 B
Go

package main
type ListNode struct {
Val int
Next *ListNode
}
type LRUCache struct {
}
func Constructor(capacity int) LRUCache {
return LRUCache{}
}
func (this *LRUCache) Get(key int) int {
return 0
}
func main() {
}