Skip to content

Commit 8f1a886

Browse files
committed
Converted tabs to spaces throughout
1 parent d133706 commit 8f1a886

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

counting_sort/Java/count_sort.java renamed to counting_sort/Java/CountSort.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ static int[] countSort(int[] arr) {
3737

3838
for (int i = 1; i < count_arr.length; i++) {
3939
count_arr[i] += count_arr[i - 1]; // rolling sum to get the count of numbers less than the
40-
// current index in the original array
40+
// current index in the original array
4141
}
4242

4343
int[] sorted_arr = new int[arr.length]; // declare and initialize the sorted array so elements from
@@ -61,3 +61,4 @@ public static void main(String[] args) {
6161
}
6262
}
6363
}
64+

0 commit comments

Comments
 (0)