update translation counting-sort (#36536)

added implementation codes
This commit is contained in:
Cleo Aguiar
2019-08-08 14:01:19 -03:00
committed by Randell Dawson
parent bb0926a934
commit 5204933fca

View File

@ -81,7 +81,7 @@ void countSort(int upperBound, int lowerBound, std::vector<int> numbersToSort) /
}
```
### Implementation Swift
### Implementação em Swift
```swift
func countingSort(_ array: [Int]) {
// Create an array to store the count of each element