mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 22:43:30 +08:00
feat: add PatienceSort
(#5288)
* feat: PatienceSort * refactor: fix readability issues,a and redundant check --------- Co-authored-by: alxklm <alx@alx.com>
This commit is contained in:
@ -0,0 +1,8 @@
|
||||
package com.thealgorithms.sorts;
|
||||
|
||||
public class PatienceSortTest extends SortingAlgorithmTest {
|
||||
@Override
|
||||
SortAlgorithm getSortAlgorithm() {
|
||||
return new PatienceSort();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user