Skip to content

Commit 182e51b

Browse files
Kelvin LauKelvin Lau
Kelvin Lau
authored and
Kelvin Lau
committed
Updated README to show Slow sort, Karatsuba Manipulation, and Haversine Distance.
1 parent ee1bf72 commit 182e51b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Karatsuba Multiplication/KaratsubaMultiplication.playground/Contents.swift

-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,3 @@ func karatsuba(_ num1: Int, by num2: Int) -> Int {
5858

5959
return product
6060
}
61-

README.markdown

+2
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ Special-purpose sorts:
8484
Bad sorting algorithms (don't use these!):
8585

8686
- [Bubble Sort](Bubble Sort/)
87+
- [Slow Sort](Slow Sort/)
8788

8889
### Compression
8990

@@ -101,6 +102,7 @@ Bad sorting algorithms (don't use these!):
101102
- [Permutations and Combinations](Combinatorics/). Get your combinatorics on!
102103
- [Shunting Yard Algorithm](Shunting Yard/). Convert infix expressions to postfix.
103104
- Statistics
105+
- [Karatsuba Multiplication](Karatsuba Multiplication/). Another take on elementary multiplication.
104106

105107
### Machine learning
106108

0 commit comments

Comments
 (0)