Skip to content

Commit aae9142

Browse files
committed
--fix : fix require
1 parent 261695e commit aae9142

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_Algorithms_/lru-cache/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set(key, value) – Set or insert the value if the key is not already present. W
88
Complexity: O(1)
99
*/
1010

11-
const DoublyLinkedList = require('../index');
11+
const DoublyLinkedList = require('../../_DataStructures_/DoublyLinkedList/index');
1212

1313
class LRUCache {
1414
constructor(n) {

0 commit comments

Comments
 (0)