()
| 15 | Node head; |
| 16 | Node tail; |
| 17 | public AllOne() { |
| 18 | head = new Node(0); |
| 19 | tail = new Node(0); |
| 20 | map = new HashMap<>(); |
| 21 | head.next = tail; |
| 22 | tail.prev = head; |
| 23 | } |
| 24 | |
| 25 | public void inc(String key) { |
| 26 | Node cur = head; |
nothing calls this directly
no outgoing calls
no test coverage detected