using System; using System.Collections.Generic; public class Solution { Dictionary<int, Node> cache = new Dictionary<int, Node>(); Node head = new Node(-1,-1); Node tail = new Node(-1,-1); int Capacity{get;} int Count => cache.Count; public class Node{ ...