mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-28 06:55:02 +08:00
fix: handle empty inputs in CircleSort
(#5121)
* fix: handle empty inputs in `CircleSort` * style: remove `main` method
This commit is contained in:
@ -0,0 +1,8 @@
|
||||
package com.thealgorithms.sorts;
|
||||
|
||||
class CircleSortTest extends SortingAlgorithmTest {
|
||||
@Override
|
||||
SortAlgorithm getSortAlgorithm() {
|
||||
return new CircleSort();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user