8000 Merge branch 'raywenderlich/master' into LinearRegression · adithyabhat/swift-algorithm-club@b4e2c87 · GitHub
[go: up one dir, main page]

Skip to content

Commit b4e2c87

Browse files
committed
Merge branch 'raywenderlich/master' into LinearRegression
2 parents 218e500 + 86b2fe3 commit b4e2c87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Merge Sort/README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Assume you're given an array of *n* numbers and you need to put them in the righ
1919

2020
Let's say the numbers to sort are `[2, 1, 5, 4, 9]`. This is your unsorted pile. The goal is to keep splitting the pile until you can't split anymore.
2121

22-
First, split the array into two halves: `[2, 1,]` and `[5, 4, 9]`. Can you keep splitting them? Yes you can!
22+
First, split the array into two halves: `[2, 1]` and `[5, 4, 9]`. Can you keep splitting them? Yes you can!
2323

2424
Focus on the left pile. `[2, 1]` will split into `[2]` and `[1]`. Can you keep splitting them? No. Time to check the other pile.
2525

0 commit comments

Comments
 (0)
0