10000 docs: remove implementation sections · clayne/Algorithms-Explanation@4aef4f1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4aef4f1

Browse files
vil02appgurueu
authored andcommitted
docs: remove implementation sections
1 parent fe77013 commit 4aef4f1

File tree

103 files changed

+0
-905
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+0
-905
lines changed

en/Basic Math/Average_Mean.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,6 @@ If we properly consider significant digits: `sum / count = 23`
5757

5858
Return the value of 22.<u>857142</u> or `23`.
5959

60-
## Implementation
61-
62-
- [Python](https://github.com/TheAlgorithms/Python/blob/master/maths/average_mean.py)
63-
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/maths/average_mean.rb)
64-
6560
## Video URL
6661

6762
- [Mean on Khan Academy](https://www.khanacademy.org/math/ap-statistics/summarizing-quantitative-data-ap/measuring-center-quantitative/v/mean-median-and-mode)

en/Basic Math/Fibonacci_Numbers.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,6 @@ Calculate matrix^8
5555
### Step 5
5656
F(8)=21
5757

58-
## Implementation
59-
60-
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/math/fibonacci.cpp)
61-
- [Elixir](https://github.com/TheAlgorithms/Elixir/blob/master/lib/dynamic_programming/fibonacci.ex)
62-
- [F#](https://github.com/TheAlgorithms/F-Sharp/blob/main/Algorithms/Math/Fibonacci.fs)
63-
- [Go](https://github.com/TheAlgorithms/Go/blob/master/dynamic/fibonacci.go)
64-
- [Haskell](https://github.com/TheAlgorithms/Haskell/blob/master/src/Maths/Fibonacci.hs)
65-
- [JavaScript](https://github.com/TheAlgorithms/Javascript/blob/master/Maths/Fibonacci.js)
66-
- [PHP](https://github.com/TheAlgorithms/PHP/blob/master/Maths/Fibonacci.php)
67-
- [Python](https://github.com/TheAlgorithms/Python/blob/master/maths/fibonacci.py)
68-
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/maths/fibonacci.rb)
69-
- [Rust](https://github.com/TheAlgorithms/Rust/blob/master/src/dynamic_programming/fibonacci.rs)
70-
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Mathematics/Fibonacci.scala)
71-
- [Swift](https://github.com/TheAlgorithms/Swift/blob/master/recursion/fibonacci.swift)
72-
7358
## Video URL
7459

7560
- [Youtube](https://www.youtube.com/watch?v=EEb6JP3NXBI)

en/Basic Math/Find the maximum number.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,6 @@ Get the last value out of the list by using predefined last method.
9898

9999
Return the value 70.
100100

101-
## Implementation
102-
103-
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/maths/find_max.rb)
104-
105101
# Source
106102

107103
- [GeeksForGeeks](https://www.geeksforgeeks.org/c-program-find-largest-element-array/)

en/Ciphers/caesar_cipher.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,3 @@ Let us say we are sending a secret message to a friend.
3535
* The second letter is `h`. The letter 6 letters away is `n`. Our message is now `Zn`
3636
* We continue like that until the end. Our final message is: `Znk Igkygx iovnkx oy g lat yahyzozazout iovnkx.`
3737
* Decryption is the same way, except instead of going to the right in the alphabet, we go backwards.
38-
39-
## Implementation
40-
41-
* [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/ciphers/caesar_cipher.cpp)
42-
* [JavaScript](https://github.com/TheAlgorithms/JavaScript/blob/master/Ciphers/CaesarCipher.js)
43-
* [PHP](https://github.com/TheAlgorithms/PHP/blob/master/Ciphers/CaesarCipher.php)
44-
* [Python](https://github.com/TheAlgorithms/Python/blob/master/ciphers/caesar_cipher.py)
45-

en/Ciphers/hill_cipher.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,6 @@ So we will get the encrypted text as **POH**.
5454
[21 12 8] [7] [539] [19]
5555
```
5656

57-
## Implementations
58-
59-
[**Python**](https://github.com/TheAlgorithms/Python/blob/master/ciphers/hill_cipher.py)
60-
6157
## Video Explanation
6258

6359
[Video explanation of the Hill Cipher](https://www.youtube.com/watch?v=6T46sgty4Mk)

en/Ciphers/playfair-cipher.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,6 @@ So we will get the encrypted text as **gatlmzclrqxa**.
117117
```
118118
So we will get the encrypted text as **instrumentsx**.
119119

120-
## Implementations
121-
122-
- [**Python**](https://github.com/TheAlgorithms/Python/blob/master/ciphers/playfair_cipher.py)
123-
124120
## Video Explanation
125121

126122
- [**Video explanation of the Playfair Cipher algorithm**](https://www.youtube.com/watch?v=UURjVI5cw4g)

en/Ciphers/rsa_cipher.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,3 @@ Enter your Private Key: 23
153153
PlainText: 51
154154
155155
```
156-
157-
## Implementations
158-
159-
- [Python](https://github.com/TheAlgorithms/Python/blob/master/ciphers/rsa_cipher.py)
160-
- [GoLang](https://github.com/TheAlgorithms/Go/blob/master/cipher/rsa/rsa.go)
161-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/ciphers/RSA.java)
162-
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/ciphers/rsa.rb)

en/Ciphers/vigenere_cipher.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,3 @@ Decryption is similar to encryption (except for the subtraction operation).
6161
- [Index of coincidence](https://en.wikipedia.org/wiki/Index_of_coincidence)
6262
3. Once the key length is found, [frequency analysis](https://en.wikipedia.org/wiki/Frequency_analysis) can be used to find the key and hence crack the cipher.
6363
4. Therefore, this cipher should not be used to encrypt any important data.
64-
65-
## Implementations
66-
67-
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/ciphers/vigenere_cipher.cpp)
68-
- [C#](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Encoders/VigenereEncoder.cs)
69-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/ciphers/Vigenere.java)
70-
- [JavaScript](https://github.com/TheAlgorithms/JavaScript/blob/master/Ciphers/VigenereCipher.js)
71-
- [Julia](https://github.com/TheAlgorithms/Julia/blob/main/src/cipher/vigenere.jl)
72-
- [Python](https://github.com/TheAlgorithms/Python/blob/master/ciphers/vigenere_cipher.py)
73-
- [Rust](https://github.com/TheAlgorithms/Rust/blob/master/src/ciphers/vigenere.rs)

en/Data Structures/Graph/Bellman-Ford.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,6 @@ O(V^2)
8888
E 1 A->B->E = -1 + 2
8989
```
9090

91-
#### Code Implementation Links
92-
93-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/datastructures/graphs/BellmanFord.java)
94-
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/dynamic_programming/bellman_ford.cpp)
95-
- [Python](https://github.com/TheAlgorithms/Python/blob/master/graphs/bellman_ford.py)
96-
- [C](https://github.com/TheAlgorithms/C/blob/master/data_structures/graphs/bellman_ford.c)
97-
9891
#### Video Explanation
9992

10093
[A video explaining the Bellman-Ford Algorithm](https://www.youtube.com/watch?v=hxMWBBCpR6A)

en/Data Structures/Linked Lists/Circular Linked List.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,6 @@ public void insertHead(int data)
6464
}
6565
```
6666

67-
## Code Implementation Links
68-
69-
- [JavaScript](https://github.com/TheAlgorithms/JavaScript/blob/master/Data-Structures/Linked-List/SinglyCircularLinkedList.js)
70-
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/cll/cll.cpp)
71-
- [Python](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/circular_linked_list.py)
72-
7367
## Video Explanation
7468

7569
[Video explanation on YouTube](https://youtu.be/HMkdlu5sP4A)

0 commit comments

Comments
 (0)
0