Skip to content

Commit 48e0ccb

Browse files
github-actionsgithub-actions
authored andcommitted
updating DIRECTORY.md
1 parent cdb65a2 commit 48e0ccb

File tree

1 file changed

+33
-32
lines changed

1 file changed

+33
-32
lines changed

DIRECTORY.md

Lines changed: 33 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
## Ciphers
33
* Caesar
4+
* [Caesar Cipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/caesar/caesar_cipher.go)
45
* [Caesar Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/caesar/caesar_test.go)
5-
* [Caesarcipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/caesar/caesar_cipher.go)
66
* Diffie Hellman Key Exchange
77
* [Diffie Hellman Key Exchange](https://github.com/TheAlgorithms/Go/blob/master/ciphers/diffie_hellman_key_exchange/diffie_hellman_key_exchange.go)
88
* [Diffie Hellman Key Exchange Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/diffie_hellman_key_exchange/diffie_hellman_key_exchange_test.go)
@@ -12,15 +12,15 @@
1212
* Rot13
1313
* [Rot13](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rot13/rot13.go)
1414
* [Rot13 Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rot13/rot13_test.go)
15-
* RSA Cipher
15+
* Rsa Cipher
16+
* [Rsa Cipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rsa_cipher/rsa_cipher.go)
1617
* [Rsa Cipher Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rsa_cipher/rsa_cipher_test.go)
17-
* [Rsacipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rsa_cipher/rsa_cipher.go)
18-
* RSA Cipher Big
19-
* [RSA Cipher Big Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rsa_cipher_big/rsa_cipher_big_test.go)
20-
* [RSA Cipher Big](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rsa_cipher_big/rsa_cipher_big.go)
21-
* XOR Cipher
22-
* [XOR Cipher Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/xor_cipher/xor_cipher_test.go)
23-
* [XOR Cipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/xor_cipher/xor_cipher.go)
18+
* Rsa Cipher Big
19+
* [Rsa Cipher Big](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rsa_cipher_big/rsa_cipher_big.go)
20+
* [Rsa Cipher Big Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rsa_cipher_big/rsa_cipher_big_test.go)
21+
* Xor Cipher
22+
* [Xor Cipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/xor_cipher/xor_cipher.go)
23+
* [Xor Cipher Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/xor_cipher/xor_cipher_test.go)
2424

2525
## Conversions
2626
* Roman To Integer
@@ -31,20 +31,21 @@
3131
* Binary Tree
3232
* [Binary Search Tree](https://github.com/TheAlgorithms/Go/blob/master/data_structures/binary_tree/binary_search_tree.go)
3333
* [Binary Tree](https://github.com/TheAlgorithms/Go/blob/master/data_structures/binary_tree/binary_tree.go)
34-
* [B Tree](https://github.com/TheAlgorithms/Go/blob/master/data_structures/binary_tree/btree.go)
34+
* [Btree](https://github.com/TheAlgorithms/Go/blob/master/data_structures/binary_tree/btree.go)
3535
* [Node](https://github.com/TheAlgorithms/Go/blob/master/data_structures/binary_tree/node.go)
36-
* Dynamic Array
37-
* [Dynamic Array](https://github.com/TheAlgorithms/Go/blob/master/data_structures/dynamic_array/dynamic_array.go)
36+
* Dynamic-Array
37+
* [Dynamic Array](https://github.com/TheAlgorithms/Go/blob/master/data_structures/dynamic-array/dynamic_array.go)
3838
* Hashmap
3939
* [Hashmap](https://github.com/TheAlgorithms/Go/blob/master/data_structures/hashmap/hashmap.go)
4040
* [Hashmap Test](https://github.com/TheAlgorithms/Go/blob/master/data_structures/hashmap/hashmap_test.go)
41-
* Linked-List
42-
* Doubly Linked-List
43-
* [Doublylinkedlist](https://github.com/TheAlgorithms/Go/blob/master/data_structures/linkedlist/doubly_linkedlist/doubly_linkedlist.go)
44-
* Singly Linked-List
45-
* [Singlylinkedlist](https://github.com/TheAlgorithms/Go/blob/master/data_structures/linkedlist/singly_linkedlist/singly_linkedlist.go)
46-
* [Singlylinkedlist2](https://github.com/TheAlgorithms/Go/blob/master/data_structures/linkedlist/singly_linkedlist/singly_linkedlist2.go)
47-
* [Singlylinkedlist Test](https://github.com/TheAlgorithms/Go/blob/master/data_structures/linkedlist/singly_linkedlist/singly_linkedlist_test.go)
41+
* Linkedlist
42+
* Doubly Linkedlist
43+
* [Doubly Linkedlist](https://github.com/TheAlgorithms/Go/blob/master/data_structures/linkedlist/doubly_linkedlist/doubly_linkedlist.go)
44+
* [Doubly Linkedlist Test](https://github.com/TheAlgorithms/Go/blob/master/data_structures/linkedlist/doubly_linkedlist/doubly_linkedlist_test.go)
45+
* Singly Linkedlist
46+
* [Singly Linkedlist](https://github.com/TheAlgorithms/Go/blob/master/data_structures/linkedlist/singly_linkedlist/singly_linkedlist.go)
47+
* [Singly Linkedlist2](https://github.com/TheAlgorithms/Go/blob/master/data_structures/linkedlist/singly_linkedlist/singly_linkedlist2.go)
48+
* [Singly Linkedlist Test](https://github.com/TheAlgorithms/Go/blob/master/data_structures/linkedlist/singly_linkedlist/singly_linkedlist_test.go)
4849
* Trie
4950
* [Trie](https://github.com/TheAlgorithms/Go/blob/master/data_structures/trie/trie.go)
5051
* [Trie Test](https://github.com/TheAlgorithms/Go/blob/master/data_structures/trie/trie_test.go)
@@ -53,8 +54,8 @@
5354
* Abstract Factory
5455
* [Abstract Factory Test](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/abstract_factory/abstract_factory_test.go)
5556
* [Adidas](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/abstract_factory/adidas.go)
56-
* [Adidas Shirt](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/abstract_factory/adidas_shirt.go)
5757
* [Adidas Shoe](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/abstract_factory/adidas_shoe.go)
58+
* [Adidasshirt](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/abstract_factory/adidasshirt.go)
5859
* [I Shirt](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/abstract_factory/i_shirt.go)
5960
* [I Shoe](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/abstract_factory/i_shoe.go)
6061
* [I Sports Factory](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/abstract_factory/i_sports_factory.go)
@@ -66,8 +67,8 @@
6667
* [Builder Pattern Test](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/builder/builder_pattern_test.go)
6768
* [Director](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/builder/director.go)
6869
* [House](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/builder/house.go)
69-
* [Igloo Builder](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/builder/iglooـbuilder.go)
70-
* [Normal Builder](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/builder/normalـbuilder.go)
70+
* [Igloo Builder](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/builder/igloo_builder.go)
71+
* [Normal Builder](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/builder/normal_builder.go)
7172
* Factory Method
7273
* [Accounting Department](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/factory_method/accounting_department.go)
7374
* [Department](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/factory_method/department.go)
@@ -82,12 +83,12 @@
8283
* [Prototype Test](https://github.com/TheAlgorithms/Go/blob/master/design_patterns/prototype/prototype_test.go)
8384

8485
## Dynamic Programming
85-
* [Binomial Coeffecient](https://github.com/TheAlgorithms/Go/blob/master/dynamic_programming/binomial_coeffecient.go)
86-
* [Fibonacci Test](https://github.com/TheAlgorithms/Go/blob/master/dynamic_programming/fibonacci_test.go)
86+
* [Binomial Coefficient](https://github.com/TheAlgorithms/Go/blob/master/dynamic_programming/binomial_coefficient.go)
8787
* [Fibonacci](https://github.com/TheAlgorithms/Go/blob/master/dynamic_programming/fibonacci.go)
88+
* [Fibonacci Test](https://github.com/TheAlgorithms/Go/blob/master/dynamic_programming/fibonacci_test.go)
8889
* [Knapsack](https://github.com/TheAlgorithms/Go/blob/master/dynamic_programming/knapsack.go)
89-
* [Longest Palindromic Subsequence](https://github.com/TheAlgorithms/Go/blob/master/dynamic_programming/longest_palindromic_subsequence.go)
9090
* [Longest Common Subsequence](https://github.com/TheAlgorithms/Go/blob/master/dynamic_programming/longest_common_subsequence.go)
91+
* [Longest Palindromic Subsequence](https://github.com/TheAlgorithms/Go/blob/master/dynamic_programming/longest_palindromic_subsequence.go)
9192
* [Matrix Multiplication](https://github.com/TheAlgorithms/Go/blob/master/dynamic_programming/matrix_multiplication.go)
9293
* [Rod Cutting](https://github.com/TheAlgorithms/Go/blob/master/dynamic_programming/rod_cutting.go)
9394

@@ -106,8 +107,8 @@
106107
## Math
107108
* Gcd
108109
* [Gcd](https://github.com/TheAlgorithms/Go/blob/master/math/gcd/gcd.go)
109-
* [Gcd Test](https://github.com/TheAlgorithms/Go/blob/master/math/gcd/gcd_test.go)
110110
* [Gcd Iterative](https://github.com/TheAlgorithms/Go/blob/master/math/gcd/gcd_iterative.go)
111+
* [Gcd Test](https://github.com/TheAlgorithms/Go/blob/master/math/gcd/gcd_test.go)
111112
* Lcm
112113
* [Lcm](https://github.com/TheAlgorithms/Go/blob/master/math/lcm/lcm.go)
113114
* Modular Arithmetic
@@ -120,9 +121,9 @@
120121
* [Fast Exponent](https://github.com/TheAlgorithms/Go/blob/master/math/power/fast_exponent.go)
121122
* [Fast Exponent Test](https://github.com/TheAlgorithms/Go/blob/master/math/power/fast_exponent_test.go)
122123
* Prime
123-
* [Millerrabinprimalitytest](https://github.com/TheAlgorithms/Go/blob/master/math/prime/miller_rabin_primality_test.go)
124-
* [Prime Test](https://github.com/TheAlgorithms/Go/blob/master/math/prime/prime_test.go)
124+
* [Miller Rabin Primality Test](https://github.com/TheAlgorithms/Go/blob/master/math/prime/miller_rabin_primality_test.go)
125125
* [Prime Check](https://github.com/TheAlgorithms/Go/blob/master/math/prime/prime_check.go)
126+
* [Prime Test](https://github.com/TheAlgorithms/Go/blob/master/math/prime/prime_test.go)
126127
* Pythagoras
127128
* [Pythagoras](https://github.com/TheAlgorithms/Go/blob/master/math/pythagoras/pythagoras.go)
128129
* [Pythagoras Test](https://github.com/TheAlgorithms/Go/blob/master/math/pythagoras/pythagoras_test.go)
@@ -131,8 +132,8 @@
131132
* [Sieve Test](https://github.com/TheAlgorithms/Go/blob/master/math/sieve/sieve_test.go)
132133

133134
## Other
134-
* Max SubArray Sum
135-
* [Maxsubarraysum](https://github.com/TheAlgorithms/Go/blob/master/other/max_subarray_sum/max_subarray_sum.go)
135+
* Max Subarray Sum
136+
* [Max Subarray Sum](https://github.com/TheAlgorithms/Go/blob/master/other/max_subarray_sum/max_subarray_sum.go)
136137
* Monte Carlo Pi
137138
* [Monte Carlo Pi](https://github.com/TheAlgorithms/Go/blob/master/other/monte_carlo_pi/monte_carlo_pi.go)
138139
* [Monte Carlo Pi Test](https://github.com/TheAlgorithms/Go/blob/master/other/monte_carlo_pi/monte_carlo_pi_test.go)
@@ -166,8 +167,8 @@
166167
* [Levenshtein Distance Test](https://github.com/TheAlgorithms/Go/blob/master/strings/levenshtein_distance/levenshtein_distance_test.go)
167168
* Multiple String Matching
168169
* Advanced Aho Corasick
169-
* [Advanced Aho Corasick](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple_string_matching/advanced_aho_corasick/advanced_aho_corasic.go)
170-
* [Advanced Aho Corasick Test](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple_string_matching/advanced_aho_corasick/advanced_aho_corasic_test.go)
170+
* [Advanced Aho Corasick](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple_string_matching/advanced_aho_corasick/advanced_aho_corasick.go)
171+
* [Advanced Aho Corasick Test](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple_string_matching/advanced_aho_corasick/advanced_aho_corasick_test.go)
171172
* Aho Corasick
172173
* [Aho Corasick](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple_string_matching/aho_corasick/aho_corasick.go)
173174
* [Aho Corasick Test](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple_string_matching/aho_corasick/aho_corasick_test.go)

0 commit comments

Comments
 (0)