Skip to content

Commit 86b2fe3

Browse files
authored
Merge pull request kodecocodes#168 from hprobotic/master
Remove comma at end of array
2 parents ab2d1a2 + 9f96077 commit 86b2fe3

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)