indra-kc / DSA

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

Bubble Sort #42

Closed ShoomanKhatri closed 3 weeks ago

ShoomanKhatri commented 4 weeks ago

Problem: Sort an array by repeatedly swapping adjacent elements if they are in the wrong order. This process repeats until the list is sorted. Usage: Simple, suitable for small or nearly sorted lists.

ShoomanKhatri commented 4 weeks ago

Assign this to me..

ShoomanKhatri commented 3 weeks ago

completed