shad-go/lrucache/lru.go
Fedor Korotkiy 872752d3ef Revert LRU
2020-03-29 23:05:47 +03:00

7 lines
90 B
Go

// +build !solution
package lrucache
func New(cap int) Cache {
panic("implement me")
}