2020-05-26 21:16:56 +03:00

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{}
}