Radix Sort
Add Radix Sort Algorithm
Description: Radix Sort is a non-comparative sorting algorithm that processes integer numbers by grouping them by individual digits. It sorts numbers digit by digit, starting from the least significant digit (LSD) to the most significant digit (MSD) or vice versa. It uses counting sort as a subroutine to sort the digits.
References:
@Kishan-Ved I am working on it. Pls assign this to me...
Hi, we don't assign issues to specific people here. If it's important, please feel free to make a PR.
I have added the radix sort algorithm along with its test cases. And all the tests worked successfully. Please check it.