Pr_robot_factory/robot/interfaces/Sorting.java

8 lines
110 B
Java
Raw Normal View History

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