Update test_merge_sort.py

This commit is contained in:
monvin 2019-10-02 16:59:08 +05:30 committed by GitHub
parent e4dcc465df
commit fc91acf34b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,5 @@
#Like QuickSort, Merge Sort is a Divide and Conquer algorithm. #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. #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 from nose.tools import assert_equal, assert_raises