Skip to content

Commit 10d6f56

Browse files
committed
Fix unnecessary comment
1 parent 5e66755 commit 10d6f56

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

kotlin/Sort and Search/SortArrayCountingSort.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@ fun sortArrayCountingSort(nums: List<Int>): List<Int> {
1212
val count = counts[i]
1313
repeat(count) { res.add(i) }
1414
}
15-
// counts.forEachIndexed { i, count -> repeat(count) { res.add(i) } }
1615
return res
1716
}

0 commit comments

Comments
 (0)