7 lines
90 B
Go
7 lines
90 B
Go
// +build !solution
|
|
|
|
package lrucache
|
|
|
|
func New(cap int) Cache {
|
|
panic("implement me")
|
|
}
|