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

15
common/base/Unit.java Normal file
View File

@@ -0,0 +1,15 @@
package base;
/**
* @author Georgiy Korneev (kgeorgiy@kgeorgiy.info)
*/
public final class Unit {
public static final Unit INSTANCE = new Unit();
private Unit() { }
@Override
public String toString() {
return "unit";
}
}