Skip to content

Commit 3d34022

Browse files
Update CountingSortIntegers.java
1 parent f23416a commit 3d34022

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sorts/CountingSortIntegers.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ class CountingSortIntegers {
1212
* @param array The array to be sorted
1313
* @param last The count of total number of elements in array
1414
* Sorts the array in increasing order
15-
* It sorted only integer arrays especially positive integers
15+
* It sorts only integer arrays especially positive integers
1616
* It uses array elements as indexes in the frequency array
17-
* Can accept only array elements within the range [0:10^8]
17+
* It can accept only array elements within the range [0:10^8]
1818
**/
1919

2020
public static void CSI(int array[], int last) {

0 commit comments

Comments
 (0)