fix: handle empty inputs in CircleSort (#5121)

* fix: handle empty inputs in `CircleSort`

* style: remove `main` method
This commit is contained in:
Piotr Idzik
2024-05-05 20:26:54 +02:00
committed by GitHub
parent 6bde5d7ed5
commit 5d00889291
2 changed files with 11 additions and 17 deletions

View File

@ -0,0 +1,8 @@
package com.thealgorithms.sorts;
class CircleSortTest extends SortingAlgorithmTest {
@Override
SortAlgorithm getSortAlgorithm() {
return new CircleSort();
}
}