Skip to content

Commit 6536cd7

Browse files
committed
fix indentation typos in the README.md
1 parent 2d1d223 commit 6536cd7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Karatsuba Multiplication/README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ Here's the full implementation. Note that the recursive algorithm is most effici
7171

7272
```swift
7373
// Karatsuba Multiplication
74-
func karatsuba(_ num1: Int, by num2: Int) -> Int {
74+
func karatsuba(_ num1: Int, by num2: Int) -> Int {
7575
let num1String = String(num1)
7676
let num2String = String(num2)
7777

7878
guard num1String.count > 1 && num2String.count > 1 else {
79-
return multiply(num1, by: num2)
79+
return multiply(num1, by: num2)
8080
}
8181

8282
let n = max(num1String.count, num2String.count)

0 commit comments

Comments
 (0)