From 2f5504ed64f045777e5118c0f5cbb6c8f55de04a Mon Sep 17 00:00:00 2001 From: Chris Kolonas Date: Wed, 25 Nov 2020 21:41:30 +0200 Subject: [PATCH] more changes --- Sorts/PigeonHoleSort.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sorts/PigeonHoleSort.js b/Sorts/PigeonHoleSort.js index f8eed47ed..fc2265049 100644 --- a/Sorts/PigeonHoleSort.js +++ b/Sorts/PigeonHoleSort.js @@ -6,7 +6,7 @@ https://en.wikipedia.org/wiki/Pigeonhole_sort * (n) and the length of the range of possible key values (N) * are approximately the same. */ -function pigeonHoleSort(arr) { +function pigeonHoleSort (arr) { let min = arr[0] let max = arr[0]