@@ -38,13 +38,13 @@ tests:
```js
function selectionSort(array) {
- // change code below this line
+ // escreva código abaixo desta linha
- // change code above this line
+ // escreva código acima desta linha
return array;
}
-// test array:
+// array de teste:
// [1, 4, 2, 8, 345, 123, 43, 32, 5643, 63, 123, 43, 2, 55, 1, 234, 92]
```
@@ -52,7 +52,7 @@ function selectionSort(array) {
-### After Test
+### After test
```js
@@ -67,6 +67,6 @@ console.info('after the test');
```js
-// solution required
+// solução requerida
```