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