/** * 桶排序 * @filename: countingSort.ts * @author: Mr Prince * @date: 2021-06-01 20:19:48 */ declare function countingSort(arr: number[]): number[]; export default countingSort;