Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
1
data class DoublyLinkedListNode(val key: Int, val value: Int) {
2
var next: DoublyLinkedListNode? = null
3
var prev: DoublyLinkedListNode? = null
4
}
5
6
class LRUCache {
7
Callers
2
LRUCache
Class · 0.70
put
Method · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected