package robot.interfaces;
@FunctionalInterface
public interface Sorting {
int[] sorting(int[] input);
}