JavaScript:实现PigeonHoleSort鸽巢排序算法
/*
*Pigeonhole sorting is a sorting algorithm that is suitable
* for sorting lists of elements where the number of elements
* (n) and the length of the range of possible key values (N)
* are approximately the same.
*/
export function pigeonHoleSort (arr) {
let min = arr[0