Files

22 lines
227 B
Go
Raw Permalink Normal View History

2025-08-26 06:18:10 +08:00
package main
type ListNode struct {
Val int
Next *ListNode
}
2025-09-01 20:17:03 +08:00
type LRUCache struct {
}
func Constructor(capacity int) LRUCache {
return LRUCache{}
}
2025-08-26 06:18:10 +08:00
2025-09-01 20:17:03 +08:00
func (this *LRUCache) Get(key int) int {
return 0
2025-08-26 06:18:10 +08:00
}
2025-09-01 20:17:03 +08:00
func main() {
2025-08-26 06:18:10 +08:00
}