增加新题目
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user