diff --git a/guide/portuguese/algorithms/sorting-algorithms/counting-sort/index.md b/guide/portuguese/algorithms/sorting-algorithms/counting-sort/index.md index 07267d0b35..24777b49bb 100644 --- a/guide/portuguese/algorithms/sorting-algorithms/counting-sort/index.md +++ b/guide/portuguese/algorithms/sorting-algorithms/counting-sort/index.md @@ -81,7 +81,7 @@ void countSort(int upperBound, int lowerBound, std::vector numbersToSort) / } ``` -### Implementation Swift +### Implementação em Swift ```swift func countingSort(_ array: [Int]) { // Create an array to store the count of each element