mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
Update test_merge_sort.py
This commit is contained in:
parent
e4dcc465df
commit
fc91acf34b
|
@ -1,6 +1,5 @@
|
|||
#Like QuickSort, Merge Sort is a Divide and Conquer algorithm.
|
||||
#It divides input array in two halves, calls itself for the two halves and then merges the two sorted halves.
|
||||
#The merge() function is used for merging two halves.
|
||||
|
||||
from nose.tools import assert_equal, assert_raises
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user