indra-kc / DSA

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

Counting Sort #48

Closed ShoomanKhatri closed 3 weeks ago

ShoomanKhatri commented 4 weeks ago

Problem: Count occurrences of each element, then reconstruct the sorted array based on counts. Usage: Very efficient for integer-based lists with a known range.

ShoomanKhatri commented 4 weeks ago

plz assign this to me.

ShoomanKhatri commented 3 weeks ago

completed