mirror of
https://github.com/TheAlgorithms/Java.git
synced 2026-03-13 08:40:43 +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