From d4ede60e3cc7a7b2fa498a6a852d9caaf38cf4e2 Mon Sep 17 00:00:00 2001 From: Chris Kolonas Date: Wed, 25 Nov 2020 21:13:41 +0200 Subject: [PATCH] added PigeonHoleSort algorithm --- Sorts/PigeonHoleSort.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sorts/PigeonHoleSort.js b/Sorts/PigeonHoleSort.js index 8af87c882..b5871ed35 100644 --- a/Sorts/PigeonHoleSort.js +++ b/Sorts/PigeonHoleSort.js @@ -1,4 +1,6 @@ /* +https://en.wikipedia.org/wiki/Pigeonhole_sort + *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)