Golang_HomeWork/hw04_lru_cache/list.go

18 lines
239 B
Go

package hw04_lru_cache //nolint:golint,stylecheck
type List interface {
// Place your code here
}
type listItem struct {
// Place your code here
}
type list struct {
// Place your code here
}
func NewList() List {
return &list{}
}