update
All checks were successful
Binary Search Test / test (push) Successful in 5s

This commit is contained in:
2026-02-17 09:35:39 +03:00
commit c4eaad130f
40 changed files with 3276 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package base;
/**
* @author Georgiy Korneev (kgeorgiy@kgeorgiy.info)
*/
public abstract class BaseChecker {
protected final TestCounter counter;
protected BaseChecker(final TestCounter counter) {
this.counter = counter;
}
public ExtendedRandom random() {
return counter.random();
}
public int mode() {
return counter.mode();
}
}