Debasish Biswas
Debasish Biswas
I am making a PR to fix this
You are just converting American English spelling to British English, no need to do that, as both words have the same meaning. and doesn't affect the sentence at all. Other...
Already Present as name `InsertionSort.java`
You have made it inside `src/test/`. Wrong place to put this file. also, this algorithm and test is already available in its proper position. No need to merge this PR
@pareshapraj `RadixSort.java` is already present inside `src/main/java/com/thealgorithms/sorts/RadixSort.java`. you have put it inside the test package where it does not belong.
But you can write test cases for Radix Sort inside `src/test/java/com/thealgorithms/sorts/` make the file name `RadixSortTest.java` and put tests inside it. you can refer to other files present in that...
Formatting is required. Readability is bad
Algorithm should not be inside `test` package.
MergeSort Algorithm and Tests both present
I think there are many files that don't have any dedicated test files, rather just a `main()` inside the class. there may be some contributors who can write some test...