Skip to content

Commit

Permalink
deletes a confusing explanation line
Browse files Browse the repository at this point in the history
  • Loading branch information
sudocrystal committed Oct 6, 2016
1 parent 7eb38b5 commit 6ad31a1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

The recursive part of this problem is short -- happening only in the mergesort method, but driving the entire algorithm.

Your goal is to make mergesort work, using recursion.

The `split_array` method is not mandatory to use, but I think it makes the solution a little easier to read and follow by making the `mergesort` method read almost exactly like the psuedocode, hiding all the details of how it works in other methods.

The hardest part of this problem, I think, will be writing the combine method and dealing with all the cases that occur when combining two lists of sorted numbers. This is an iterative solution, not a recursive solution.
The hardest part of this problem is writing the combine method and dealing with all the cases that occur when combining two lists of sorted numbers. **This is part is iterative, not recursive.**

0 comments on commit 6ad31a1

Please sign in to comment.