X Tutup
Skip to content

Commit 8011162

Browse files
github-actionsgithub-actions
authored andcommitted
updating DIRECTORY.md
1 parent 75f6888 commit 8011162

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

DIRECTORY.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -16,43 +16,43 @@
1616
* [DecimalToHex](https://github.com/TheAlgorithms/Javascript/blob/master/Conversions/DecimalToHex.js)
1717
* [DecimalToOctal](https://github.com/TheAlgorithms/Javascript/blob/master/Conversions/DecimalToOctal.js)
1818

19-
## Data Structures
19+
## Data-Structures
2020
* Graph
21-
* [Graph](https://github.com/TheAlgorithms/Javascript/blob/master/Data%20Structures/Graph/Graph.js)
21+
* [Graph](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Graph/Graph.js)
2222
* Heap
23-
* [MinPriorityQueue](https://github.com/TheAlgorithms/Javascript/blob/master/Data%20Structures/Heap/MinPriorityQueue.js)
23+
* [MinPriorityQueue](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Heap/MinPriorityQueue.js)
2424
* Linked List
25-
* [DoublyLinkedList](https://github.com/TheAlgorithms/Javascript/blob/master/Data%20Structures/Linked%20List/DoublyLinkedList.js)
26-
* [singlylinklist](https://github.com/TheAlgorithms/Javascript/blob/master/Data%20Structures/Linked%20List/singlylinklist.js)
25+
* [DoublyLinkedList](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Linked%20List/DoublyLinkedList.js)
26+
* [singlylinklist](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Linked%20List/singlylinklist.js)
2727
* Queue
28-
* [Queue](https://github.com/TheAlgorithms/Javascript/blob/master/Data%20Structures/Queue/Queue.js)
29-
* [QueueUsing2Stacks](https://github.com/TheAlgorithms/Javascript/blob/master/Data%20Structures/Queue/QueueUsing2Stacks.js)
28+
* [Queue](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Queue/Queue.js)
29+
* [QueueUsing2Stacks](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Queue/QueueUsing2Stacks.js)
3030
* Stack
31-
* [Stack](https://github.com/TheAlgorithms/Javascript/blob/master/Data%20Structures/Stack/Stack.js)
31+
* [Stack](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Stack/Stack.js)
3232
* Tree
33-
* [Binary Search Tree](https://github.com/TheAlgorithms/Javascript/blob/master/Data%20Structures/Tree/Binary%20Search%20Tree.js)
33+
* [Binary Search Tree](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Tree/Binary%20Search%20Tree.js)
3434

3535
## Hashes
3636
* [SHA1](https://github.com/TheAlgorithms/Javascript/blob/master/Hashes/SHA1.js)
3737
* [SHA256](https://github.com/TheAlgorithms/Javascript/blob/master/Hashes/SHA256.js)
3838

39-
## linear-algebra-javascript
39+
## Linear-Algebra-Javascript
4040
* src
41-
* [la lib](https://github.com/TheAlgorithms/Javascript/blob/master/linear-algebra-javascript/src/la_lib.js)
41+
* [la lib](https://github.com/TheAlgorithms/Javascript/blob/master/Linear-Algebra-Javascript/src/la_lib.js)
4242
* test
43-
* [test](https://github.com/TheAlgorithms/Javascript/blob/master/linear-algebra-javascript/test/test.js)
43+
* [test](https://github.com/TheAlgorithms/Javascript/blob/master/Linear-Algebra-Javascript/test/test.js)
4444

45-
## maths
46-
* [abs](https://github.com/TheAlgorithms/Javascript/blob/master/maths/abs.js)
47-
* [average mean](https://github.com/TheAlgorithms/Javascript/blob/master/maths/average_mean.js)
48-
* [DijkstraSmallestPath](https://github.com/TheAlgorithms/Javascript/blob/master/maths/DijkstraSmallestPath.js)
49-
* [factorial](https://github.com/TheAlgorithms/Javascript/blob/master/maths/factorial.js)
50-
* [Fibonacci](https://github.com/TheAlgorithms/Javascript/blob/master/maths/Fibonacci.js)
51-
* [find lcm](https://github.com/TheAlgorithms/Javascript/blob/master/maths/find_lcm.js)
52-
* [FindHcf](https://github.com/TheAlgorithms/Javascript/blob/master/maths/FindHcf.js)
53-
* [graph](https://github.com/TheAlgorithms/Javascript/blob/master/maths/graph.js)
54-
* [Palindrome](https://github.com/TheAlgorithms/Javascript/blob/master/maths/Palindrome.js)
55-
* [pascalTriangle](https://github.com/TheAlgorithms/Javascript/blob/master/maths/pascalTriangle.js)
45+
## Maths
46+
* [Abs](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/Abs.js)
47+
* [AverageMean](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/AverageMean.js)
48+
* [DijkstraSmallestPath](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/DijkstraSmallestPath.js)
49+
* [Factorial](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/Factorial.js)
50+
* [Fibonacci](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/Fibonacci.js)
51+
* [FindHcf](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/FindHcf.js)
52+
* [FindLcm](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/FindLcm.js)
53+
* [Graph](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/Graph.js)
54+
* [Palindrome](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/Palindrome.js)
55+
* [PascalTriangle](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/PascalTriangle.js)
5656

5757
## Search
5858
* [binarySearch](https://github.com/TheAlgorithms/Javascript/blob/master/Search/binarySearch.js)

0 commit comments

Comments
 (0)
X Tutup