-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: Sync SAP011 and Main #356
Merged
Merged
Changes from 31 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
4bba659
Update session-01.md (fixes 328)
icarito f62c2e3
intermediate exercise str-count to practice strings
ssinuco 3d44963
update lyft exercise
GenesisMauries 0f14fe0
Sesion 3 remove string spaces (#341) by @MarciaMillanao
MarciaMillanao ce756eb
[AI-Exercise] ID Card (#344)
envm92 5de90d9
advanced exercise squareUp to practice arrays (#334)
ssinuco 91c0c0c
exercise array6 to practice recursion (#333)
ssinuco aec6758
intermediate exercise End X to practice recursion (#332)
ssinuco 01ada6c
xy balance exercise to practice strings (#331)
ssinuco a292112
chore: :children_crossing: Add new exercise think on datalovers (#325)
reloadercf 183b388
Add tips for session 2 exercises (#321)
ssinuco 017f3e2
session 17 (#317)
ssinuco cc46772
Translate mock interview docs (#342)
moniyama 60015e4
max mirror exercise to practice arrays (#330)
ssinuco 2d0368b
FIX: correccion link al ejercicio en codewars (#312)
msantelices 62f5a98
exercise findPairForSum (#293)
MarciaMillanao 9d840f2
Update README.md
icarito 0b1e1fc
Enfatizar que la primera sesión el ejercicio lo hacen Coach, no las e…
icarito 7225519
Add timeline (#352)
icarito 9964a86
[AI-Exercise] Minesweeper (#346)
envm92 300c825
feat: :green_heart: Add new exercise with IA and css keyframes "Livin…
reloadercf 7004c44
feat: :sparkles: Add exercise beginner of IA with matrix. (#348)
reloadercf 9deffc3
add ex make chocolate to s04 pt-BR
moniyama cff9991
apresentação s01 pt-BR
moniyama 84c0d1f
update apresentação s01
moniyama 0f4f777
add translation pt
moniyama 64013b4
adaptações e add material em pt
moniyama acc3296
inversão de Q&A e resoluções
moniyama 4767210
fix: Eliminando el ejercicio word-ladder porque es específico para ha…
NaraSakamoto ac221ec
fix: fixing mdlint error
NaraSakamoto 3552283
fix: fixing title session 10
NaraSakamoto 6af85eb
fix: fixing duplicated line
NaraSakamoto File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
difficulty: | ||
- intermediate | ||
OAs: | ||
- arrays | ||
- recursion | ||
projects: | ||
- md-links | ||
--- | ||
|
||
# Array 6 | ||
|
||
[https://the-winter.github.io/codingjs/exercise.html?name=array6&title=Recursion-1](https://the-winter.github.io/codingjs/exercise.html?name=array6&title=Recursion-1) | ||
|
||
Dada una matriz de enteros, calcule recursivamente si la matriz | ||
contiene un 6. Utilizaremos la convención de considerar sólo la | ||
parte de la matriz que comienza en el índice dado. De esta forma, | ||
una llamada recursiva puede pasar índice+1 para moverse hacia | ||
abajo en la matriz. La llamada inicial pasará índice como 0. | ||
|
||
Ejemplos | ||
|
||
array6([1, 6, 4], 0) → true | ||
array6([1, 4], 0) → false | ||
array6([6], 0) → true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
difficulty: | ||
- intermediate | ||
OAs: | ||
- arrays | ||
- recursion | ||
projects: | ||
- md-links | ||
--- | ||
|
||
# Array 6 | ||
|
||
[https://the-winter.github.io/codingjs/exercise.html?name=array6&title=Recursion-1](https://the-winter.github.io/codingjs/exercise.html?name=array6&title=Recursion-1) | ||
|
||
Dada uma matriz de números inteiros, calcule recursivamente se | ||
a matriz contém um 6. Usaremos a convenção de considerar apenas | ||
a parte da matriz que começa no índice fornecido. Dessa forma, | ||
uma chamada recursiva pode passar o índice+1 para descer na matriz. | ||
A chamada inicial passará o índice como 0. | ||
|
||
Exemplos | ||
|
||
array6([1, 6, 4], 0) → true | ||
array6([1, 4], 0) → false | ||
array6([6], 0) → true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
difficulty: | ||
- newbie | ||
OAs: | ||
- strings | ||
projects: | ||
- cipher | ||
- card-validation | ||
--- | ||
|
||
# atFirst | ||
|
||
[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) | ||
|
||
Dada una cadena, devuelve una cadena de longitud 2 formada | ||
por sus 2 primeros caracteres. Si la longitud de la cadena | ||
es inferior a 2, utiliza '@' para los caracteres que faltan. | ||
|
||
**Ejemplo** | ||
|
||
```js | ||
atFirst('hello') → he | ||
atFirst('hi') → hi | ||
atFirst('h') → h@ | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
difficulty: | ||
- newbie | ||
OAs: | ||
- strings | ||
projects: | ||
- cipher | ||
- card-validation | ||
--- | ||
|
||
# atFirst | ||
|
||
[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 | ||
inferior a 2, use '@' para os chars que faltam. | ||
|
||
**Exemplo** | ||
|
||
```js | ||
atFirst('hello') → he | ||
atFirst('hi') → hi | ||
atFirst('h') → h@ | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
difficulty: | ||
- intermediate | ||
OAs: | ||
- strings | ||
projects: | ||
- cipher | ||
- card-validation | ||
--- | ||
|
||
# catDog | ||
|
||
[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 | ||
el mismo número de veces en la cadena dada. | ||
|
||
**Ejemplo** | ||
|
||
```js | ||
catDog('catdog') → true | ||
catDog('catcat') → false | ||
catDog('1cat1cadodog') → true | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
difficulty: | ||
- intermediate | ||
OAs: | ||
- strings | ||
projects: | ||
- cipher | ||
- card-validation | ||
--- | ||
|
||
# catDog | ||
|
||
[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. | ||
|
||
**Exemplo** | ||
|
||
```js | ||
catDog('catdog') → true | ||
catDog('catcat') → false | ||
catDog('1cat1cadodog') → true | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
difficulty: | ||
- beginner | ||
OAs: | ||
- strings | ||
projects: | ||
- cipher | ||
- card-validation | ||
--- | ||
|
||
# countHi | ||
|
||
[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) | ||
|
||
Devuelve el número de veces que la cadena "hi" aparece en | ||
cualquier lugar de la cadena dada. | ||
|
||
**Ejemplo** | ||
|
||
```js | ||
countHi('abc hi ho') → 1 | ||
countHi('ABChi hi') → 2 | ||
countHi('hihi') → 2 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
difficulty: | ||
- beginner | ||
OAs: | ||
- strings | ||
projects: | ||
- cipher | ||
- card-validation | ||
--- | ||
|
||
# countHi | ||
|
||
[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. | ||
|
||
**Exemplo** | ||
|
||
```js | ||
countHi('abc hi ho') → 1 | ||
countHi('ABChi hi') → 2 | ||
countHi('hihi') → 2 | ||
``` |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ficou duplicada esta linha
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Obrigada Sebas! Corrigi!