Skip to content

Commit f240911

Browse files
committed
refactor directories
1 parent f108f35 commit f240911

File tree

15 files changed

+33
-5
lines changed

15 files changed

+33
-5
lines changed

src/data-structures/graphs/graph.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const Node = require('./node');
33
const Stack = require('../stacks/stack');
44
const Queue = require('../queues/queue');
5-
const HashMap = require('../hash-maps/hashmap');
5+
const HashMap = require('../maps/hash-maps/hashmap');
66

77
/**
88
* Graph that uses an adjacent list

src/data-structures/hash-maps/hashmap.js renamed to src/data-structures/maps/hash-maps/hashmap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable no-bitwise, no-iterator, no-restricted-syntax */
2-
const LinkedList = require('../linked-lists/linked-list');
2+
const LinkedList = require('../../linked-lists/linked-list');
33
const { nextPrime } = require('./primes');
44

55
/**

0 commit comments

Comments
 (0)