class Solution: def __init__(self, capacity: int): # write code here self.capacity = capacity self.lru_dict = dict() self.lru_list = list() def get(self, key: int) -> int: # write code here if key not in self.lru_list: return -1 self.lru_list.remove(key) s...