package Sorts;
import java.util.Arrays;
import java.util.List;
/**
* The common interface of most sorting algorithms
*
* @author Podshivalov Nikita (https://github.com/nikitap492)
*/
public interface SortAlgorithm {
/**
* Main method arrays sorting algorithms
*
* @param unsorted - an array should be sorted
* @return a sorted array
*/