Untitled
Anonymous
plain_text
01/20/2022 8:03 AM
192 B
14
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);
}