edualgo / eduAlgo

A simple python package having modules of different algorithms to use in educational purposes.
https://edualgo.github.io/documentation/
MIT License
99 stars 54 forks source link

Add Radix Sort for Sorting #174

Closed VaishnaviNandakumar closed 2 years ago

VaishnaviNandakumar commented 2 years ago

Is your feature request related to a problem? Please describe. I'd like to contribute to a sorting algorithm.

Describe the solution you'd like Radix Sort - An efficient algorithm when the range of input values are provided with a time complexity of O(nk).

Abhijit2505 commented 2 years ago

@VaishnaviNandakumar please get started

VaishnaviNandakumar commented 2 years ago

@Abhijit2505 Created PR. Do let me know if there are any suggestions.