indra-kc / DSA

A collection of essential Data Structures and Algorithms implemented in Python.
0 stars 6 forks source link

Merge Sort #45

Closed ShoomanKhatri closed 3 weeks ago

ShoomanKhatri commented 4 weeks ago

Problem: Recursively divide the array in half, sort each half, and merge them back together. Usage: Great for large lists; uses extra space for merging.

ShoomanKhatri commented 4 weeks ago

plz assign this to me.

ShoomanKhatri commented 3 weeks ago

completed