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