From 5204933fca33bf7fcfa875b65bdead2aee97754d Mon Sep 17 00:00:00 2001 From: Cleo Aguiar Date: Thu, 8 Aug 2019 14:01:19 -0300 Subject: [PATCH] update translation counting-sort (#36536) added implementation codes --- .../algorithms/sorting-algorithms/counting-sort/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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