Untitled
Anonymous
plain_text
01/20/2022 11:07 AM
192 B
16
Indexable
public abstract class LRUCache<K, V> {
LRUCache(int capacity) {}
abstract V get(K key);
abstract void put(K key, V value);
}
Editor is loading...
public abstract class LRUCache<K, V> {
LRUCache(int capacity) {}
abstract V get(K key);
abstract void put(K key, V value);
}