From 7ff9e1e5e01449eba2be28a845d0b1353425642a Mon Sep 17 00:00:00 2001 From: DeronLee Date: Sun, 30 Oct 2016 17:22:31 +0900 Subject: [PATCH] add comments --- SortingAlgorithm/bitImageSort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SortingAlgorithm/bitImageSort.py b/SortingAlgorithm/bitImageSort.py index 0c53313..1d0000c 100644 --- a/SortingAlgorithm/bitImageSort.py +++ b/SortingAlgorithm/bitImageSort.py @@ -10,7 +10,7 @@ for i in range(0, 10000000): indexList.append(0) - +# use +1 can make sure we won't miss some equals number. for num in inputList: indexList[num] += 1