MCPcopy Create free account
hub / github.com/ByteByteGoHq/coding-interview-patterns / DoublyLinkedListNode

Class DoublyLinkedListNode

kotlin/Linked Lists/LRUCache.kt:1–4  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1data class DoublyLinkedListNode(val key: Int, val value: Int) {
2 var next: DoublyLinkedListNode? = null
3 var prev: DoublyLinkedListNode? = null
4}
5
6class LRUCache {
7

Callers 2

LRUCacheClass · 0.70
putMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected