|
16 | 16 | * [DecimalToHex](https://github.com/TheAlgorithms/Javascript/blob/master/Conversions/DecimalToHex.js) |
17 | 17 | * [DecimalToOctal](https://github.com/TheAlgorithms/Javascript/blob/master/Conversions/DecimalToOctal.js) |
18 | 18 |
|
19 | | -## Data Structures |
| 19 | +## Data-Structures |
20 | 20 | * 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) |
22 | 22 | * 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) |
24 | 24 | * 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) |
27 | 27 | * 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) |
30 | 30 | * 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) |
32 | 32 | * 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) |
34 | 34 |
|
35 | 35 | ## Hashes |
36 | 36 | * [SHA1](https://github.com/TheAlgorithms/Javascript/blob/master/Hashes/SHA1.js) |
37 | 37 | * [SHA256](https://github.com/TheAlgorithms/Javascript/blob/master/Hashes/SHA256.js) |
38 | 38 |
|
39 | | -## linear-algebra-javascript |
| 39 | +## Linear-Algebra-Javascript |
40 | 40 | * 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) |
42 | 42 | * 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) |
44 | 44 |
|
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) |
56 | 56 |
|
57 | 57 | ## Search |
58 | 58 | * [binarySearch](https://github.com/TheAlgorithms/Javascript/blob/master/Search/binarySearch.js) |
|
0 commit comments