|
1 | 1 |
|
2 | 2 | ## Ciphers
|
3 |
| - * [Caesarcipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/CaesarCipher.go) |
| 3 | + * Caesar |
| 4 | + * [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/CaesarCipher.go) |
4 | 6 | * [Diffiehellmankeyexchange](https://github.com/TheAlgorithms/Go/blob/master/ciphers/diffieHellmanKeyExchange.go)
|
5 |
| - * [Rot13](https://github.com/TheAlgorithms/Go/blob/master/ciphers/Rot13.go) |
6 |
| - * [Rsacipher(Big)](https://github.com/TheAlgorithms/Go/blob/master/ciphers/RSAcipher(Big).go) |
7 |
| - * [Rsacipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/RSAcipher.go) |
8 |
| - * [Xorcipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/xorCipher.go) |
| 7 | + * Rot13 |
| 8 | + * [Rot13](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rot13/rot13.go) |
| 9 | + * [Rot13 Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rot13/rot13_test.go) |
| 10 | + * Rsa |
| 11 | + * [Rsa Cipher Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rsa/rsa_cipher_test.go) |
| 12 | + * [Rsacipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rsa/RSAcipher.go) |
| 13 | + * Rsabig |
| 14 | + * [Rsa Cipher Big Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rsaBig/rsa_cipher_big_test.go) |
| 15 | + * [Rsacipher(Big)](https://github.com/TheAlgorithms/Go/blob/master/ciphers/rsaBig/RSAcipher(Big).go) |
| 16 | + * Xor |
| 17 | + * [Xor Cipher Test](https://github.com/TheAlgorithms/Go/blob/master/ciphers/xor/xor_cipher_test.go) |
| 18 | + * [Xorcipher](https://github.com/TheAlgorithms/Go/blob/master/ciphers/xor/xorCipher.go) |
9 | 19 |
|
10 | 20 | ## Data-Structures
|
11 | 21 | * Binary-Tree
|
|
38 | 48 | * [Floyd Warshall](https://github.com/TheAlgorithms/Go/blob/master/graphs/floyd_warshall.go)
|
39 | 49 |
|
40 | 50 | ## Math
|
41 |
| - * [Fastexponent](https://github.com/TheAlgorithms/Go/blob/master/math/fastExponent.go) |
42 |
| - * [Greatest Common Divisor](https://github.com/TheAlgorithms/Go/blob/master/math/greatest_common_divisor.go) |
43 |
| - * Prime Check |
44 |
| - * [Prime Check](https://github.com/TheAlgorithms/Go/blob/master/math/prime_check/prime_check.go) |
45 |
| - * [Prime Check Test](https://github.com/TheAlgorithms/Go/blob/master/math/prime_check/prime_check_test.go) |
46 |
| - * [Sieve](https://github.com/TheAlgorithms/Go/blob/master/math/Sieve.go) |
| 51 | + * Gcd |
| 52 | + * [Greatest Common Divisor](https://github.com/TheAlgorithms/Go/blob/master/math/gcd/greatest_common_divisor.go) |
| 53 | + * [Greatest Common Divisor Test](https://github.com/TheAlgorithms/Go/blob/master/math/gcd/greatest_common_divisor_test.go) |
| 54 | + * Power |
| 55 | + * [Fastexponent](https://github.com/TheAlgorithms/Go/blob/master/math/power/fastExponent.go) |
| 56 | + * [Fastexponent Test](https://github.com/TheAlgorithms/Go/blob/master/math/power/fastExponent_test.go) |
| 57 | + * Primecheck |
| 58 | + * [Prime Check](https://github.com/TheAlgorithms/Go/blob/master/math/primecheck/prime_check.go) |
| 59 | + * [Prime Check Test](https://github.com/TheAlgorithms/Go/blob/master/math/primecheck/prime_check_test.go) |
| 60 | + * Pythagoras |
| 61 | + * [Pythagoras](https://github.com/TheAlgorithms/Go/blob/master/math/pythagoras/pythagoras.go) |
| 62 | + * [Pythagoras Test](https://github.com/TheAlgorithms/Go/blob/master/math/pythagoras/pythagoras_test.go) |
| 63 | + * Sieve |
| 64 | + * [Sieve](https://github.com/TheAlgorithms/Go/blob/master/math/sieve/Sieve.go) |
47 | 65 |
|
48 | 66 | ## Other
|
49 | 67 | * [Maxsubarraysum](https://github.com/TheAlgorithms/Go/blob/master/other/maxSubarraySum.go)
|
|
80 | 98 | * Levenshteindistance
|
81 | 99 | * [Levenshteindistance](https://github.com/TheAlgorithms/Go/blob/master/strings/levenshteindistance/levenshteinDistance.go)
|
82 | 100 | * [Levenshteindistance Test](https://github.com/TheAlgorithms/Go/blob/master/strings/levenshteindistance/levenshteinDistance_test.go)
|
83 |
| - * Multiple String Matching |
84 |
| - * [Ac](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple%20string%20matching/ac.go) |
85 |
| - * [Adac](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple%20string%20matching/adac.go) |
86 |
| - * [Sbom](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple%20string%20matching/sbom.go) |
| 101 | + * Multiple-String-Matching |
| 102 | + * Advanced-Aho-Corasick |
| 103 | + * [Adac](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple-string-matching/advanced-aho-corasick/adac.go) |
| 104 | + * [Adac Test](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple-string-matching/advanced-aho-corasick/adac_test.go) |
| 105 | + * Aho-Corasick |
| 106 | + * [Ac](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple-string-matching/aho-corasick/ac.go) |
| 107 | + * [Ac Test](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple-string-matching/aho-corasick/ac_test.go) |
| 108 | + * Sbom |
| 109 | + * [Sbom](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple-string-matching/sbom/sbom.go) |
| 110 | + * [Sbom Test](https://github.com/TheAlgorithms/Go/blob/master/strings/multiple-string-matching/sbom/sbom_test.go) |
87 | 111 | * Naivesearch
|
88 | 112 | * [Naivestringsearch](https://github.com/TheAlgorithms/Go/blob/master/strings/naivesearch/naiveStringSearch.go)
|
89 | 113 | * [Naivestringsearch Test](https://github.com/TheAlgorithms/Go/blob/master/strings/naivesearch/naiveStringSearch_test.go)
|
90 |
| - * Single String Matching |
91 |
| - * [Bom](https://github.com/TheAlgorithms/Go/blob/master/strings/single%20string%20matching/bom.go) |
92 |
| - * [Horspool](https://github.com/TheAlgorithms/Go/blob/master/strings/single%20string%20matching/horspool.go) |
93 |
| - * [Kmp](https://github.com/TheAlgorithms/Go/blob/master/strings/single%20string%20matching/kmp.go) |
| 114 | + * Single-String-Matching |
| 115 | + * [Bom](https://github.com/TheAlgorithms/Go/blob/master/strings/single-string-matching/bom.go) |
| 116 | + * [Horspool](https://github.com/TheAlgorithms/Go/blob/master/strings/single-string-matching/horspool.go) |
| 117 | + * Kmp |
| 118 | + * [Kmp](https://github.com/TheAlgorithms/Go/blob/master/strings/single-string-matching/kmp/kmp.go) |
| 119 | + * [Kmp Test](https://github.com/TheAlgorithms/Go/blob/master/strings/single-string-matching/kmp/kmp_test.go) |
0 commit comments