From 43e6763cff021cf6a41ccea64ad1bae73f7abdb4 Mon Sep 17 00:00:00 2001 From: sagarkrjais <70060055+sagarkrjais@users.noreply.github.com> Date: Fri, 2 Oct 2020 13:18:36 +0530 Subject: [PATCH] Update Merge_sort.py --- Sorting/Merge_sort.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sorting/Merge_sort.py b/Sorting/Merge_sort.py index 2036ed9..4e2d53c 100644 --- a/Sorting/Merge_sort.py +++ b/Sorting/Merge_sort.py @@ -1,3 +1,4 @@ +# Amazing solution # Implementing Merge Sort Algorithm on an unsorted array. """ ************************************************************************ Merge Sort is based on Divide-and-conquer Algorithm. @@ -43,4 +44,4 @@ def main(): merge_sort(A) if __name__ == "__main__": - main() \ No newline at end of file + main()