MCPcopy Create free account
hub / github.com/codedecks-in/LeetCode-Solutions / Node

Class Node

Java/LRU-Cache.java:78–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76 }
77
78 class Node{
79 int key;
80 int val;
81 Node prev;
82 Node next;
83 }
84}
85
86/**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected