Skip to content

Commit

Permalink
small fixes in s17 exercises (#370) Portuguese by @moniyama
Browse files Browse the repository at this point in the history
  • Loading branch information
moniyama authored Nov 13, 2023
1 parent bc8a0ea commit af5f21a
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions exercises/at-first/README.pt-BR.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ projects:

[https://the-winter.github.io/codingjs/exercise.html?name=atFirst&title=String-1](https://the-winter.github.io/codingjs/exercise.html?name=atFirst&title=String-1)

Dado um cordel, devolva um cordel de comprimento 2 feito
de seus primeiros 2 chars. Se o comprimento da corda for
Dada uma string, devolva uma string de comprimento 2 feito
de seus primeiros 2 chars. Se o comprimento da string for
inferior a 2, use '@' para os chars que faltam.

**Exemplo**
Expand Down
2 changes: 1 addition & 1 deletion exercises/cat-dog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ projects:

[https://the-winter.github.io/codingjs/exercise.html?name=catDog&title=String-2](https://the-winter.github.io/codingjs/exercise.html?name=catDog&title=String-2)

Devuelve true si la cadena "cat" y "got" aparecen
Devuelve true si la cadena "cat" y "dog" aparecen
el mismo número de veces en la cadena dada.

**Ejemplo**
Expand Down
4 changes: 2 additions & 2 deletions exercises/cat-dog/README.pt-BR.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ projects:

[https://the-winter.github.io/codingjs/exercise.html?name=catDog&title=String-2](https://the-winter.github.io/codingjs/exercise.html?name=catDog&title=String-2)

Retornar verdadeiro se a corda "cat" e "dog"
aparecerem o mesmo número de vezes na corda dada.
Retornar verdadeiro se a string "cat" e "dog"
aparecerem o mesmo número de vezes na string dada.

**Exemplo**

Expand Down
4 changes: 2 additions & 2 deletions exercises/count-hi/README.pt-BR.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ projects:

[https://the-winter.github.io/codingjs/exercise.html?name=countHi&title=String-2](https://the-winter.github.io/codingjs/exercise.html?name=countHi&title=String-2)

Devolver o número de vezes que a corda "oi"
aparece em qualquer parte da corda dada.
Devolver o número de vezes que a string "hi"
aparece em qualquer parte da string dada.

**Exemplo**

Expand Down
6 changes: 3 additions & 3 deletions exercises/g-happy/README.pt-BR.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ projects:

[https://the-winter.github.io/codingjs/exercise.html?name=gHappy&title=String-3](https://the-winter.github.io/codingjs/exercise.html?name=gHappy&title=String-3)

Diremos que um 'g' minúsculo em um fio é "feliz" se
Diremos que um 'g' minúsculo em uma string é "feliz" se
houver outro 'g' imediatamente à sua esquerda ou direita.
Retornar verdadeiro se todos os 'g' na corda dada estiverem felizes.
Retornar verdadeiro se todos os 'g' na string dada estiverem felizes.

__Ejemplo__
__Exemplo__

```js
gHappy('xxggxx') → true
Expand Down
2 changes: 1 addition & 1 deletion exercises/see-color/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ projects:

[https://the-winter.github.io/codingjs/exercise.html?name=seeColor&title=String-1](https://the-winter.github.io/codingjs/exercise.html?name=seeColor&title=String-1)

Dada una cadena, si la cadena empieza por "rojo" o "azul"
Dada una cadena, si la cadena empieza por "red" o "blue"
devuelve esa cadena de color, en caso contrario devuelve
la cadena vacía.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ projects:

[https://the-winter.github.io/codingjs/exercise.html?name=seeColor&title=String-1](https://the-winter.github.io/codingjs/exercise.html?name=seeColor&title=String-1)

Dado um cordel, devolva um cordel de comprimento 2 feito
de seus primeiros 2 chars. Se o comprimento da corda for
inferior a 2, use '@' para os chars que faltam.
Dada uma string, se a string começa com "red" ou "blue"
devolve essa string da cor, caso contrário devolve
a string vazia.

**Exemplo**

Expand Down

0 comments on commit af5f21a

Please sign in to comment.