We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 261695e commit aae9142Copy full SHA for aae9142
src/_Algorithms_/lru-cache/index.js
@@ -8,7 +8,7 @@ set(key, value) – Set or insert the value if the key is not already present. W
8
Complexity: O(1)
9
*/
10
11
-const DoublyLinkedList = require('../index');
+const DoublyLinkedList = require('../../_DataStructures_/DoublyLinkedList/index');
12
13
class LRUCache {
14
constructor(n) {
0 commit comments