- Notifications
You must be signed in to change notification settings - Fork 180
exercises 35-square-each-odd-number to 41-frequency-of-words #59
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
Merged
alesanchezr merged 83 commits into 4GeeksAcademy:master from josemoracard:jose8-35-square-each-odd-number Jan 24, 2024
Merged
Changes from 1 commit
Commits
Show all changes
83 commits Select commit Hold shift + click to select a range
ec5641c
Update solution.hide.py
josemoracard f7534ae
Update app.py
josemoracard ad17111
Update README.md
josemoracard 58cb51c
Create README.es.md
josemoracard ec7c404
Update solution.hide.py
josemoracard bbb3734
Update app.py
josemoracard 9a63297
Update test.py
josemoracard d3d8066
Update README.md
josemoracard aa9dc78
Create README.es.md
josemoracard e826bd8
Update README.es.md
josemoracard d0500b6
Update README.md
josemoracard 72c4780
Update README.md
josemoracard 252579f
Update README.md
josemoracard 285882d
Update app.py
josemoracard bd82221
Update app.py
josemoracard 95337e9
Create README.es.md
josemoracard ee3f111
Update README.md
josemoracard 9fb2773
Update README.es.md
josemoracard dc8d00f
Update README.md
josemoracard 0b91997
Update README.md
josemoracard 236281d
Update README.es.md
josemoracard 459bc2f
Update solution.hide.py
josemoracard 71cdd54
Update solution.hide.py
josemoracard 1860b79
Update README.md
josemoracard d40a9ad
Update solution.hide.py
josemoracard dd74f20
Update solution.hide.py
josemoracard 34f92c0
Update app.py
josemoracard 3fb7420
Update app.py
josemoracard e02e57e
Update README.md
josemoracard fce6fca
Update README.md
josemoracard ce2a099
Update README.es.md
josemoracard 66028ab
Update README.md
josemoracard fbef855
Update README.es.md
josemoracard d82e4bb
Update test.py
josemoracard 27ce1a1
Update README.es.md
josemoracard 3fd9bd8
Update README.md
josemoracard 8563d94
Update app.py
josemoracard 09ecb60
Create README.es.md
josemoracard e5de870
Update README.md
josemoracard ec05b78
Update README.es.md
josemoracard 9a71498
Update README.md
josemoracard 543a5ab
Update app.py
josemoracard 07ec6c3
Update solution.hide.py
josemoracard e45ddb9
Update README.md
josemoracard 27c687e
Create README.es.md
josemoracard 536cded
Update README.md
josemoracard 1fff9c7
Update test.py
josemoracard 2637b79
Update README.md
josemoracard 087d9ba
Update app.py
josemoracard c7bb7ad
Create README.es.md
josemoracard 155e5c6
Update README.md
josemoracard 926d7f8
Update README.es.md
josemoracard 042bc62
Update solution.hide.py
josemoracard 64236e9
Update README.es.md
josemoracard 436732c
Update README.es.md
josemoracard 2c2e41d
Update README.md
josemoracard 48b138f
Update README.md
josemoracard 962eff4
Update README.md
josemoracard 041dc4b
Update solution.hide.py
josemoracard c6a52ad
Update test.py
josemoracard e8c667b
Update README.md
josemoracard 3244157
Update test.py
josemoracard c442c87
Update solution.hide.py
josemoracard 8677488
Update README.es.md
josemoracard ebb3428
Update README.md
josemoracard bf6d3b6
Update solution.hide.py
josemoracard 2ddeba9
Update README.md
josemoracard 142bbf9
Update README.es.md
josemoracard adf728a
Update README.es.md
josemoracard 5be39e5
Update README.es.md
josemoracard 93ecba3
Update README.md
josemoracard 50518dd
Update README.md
josemoracard d978db0
Update README.md
josemoracard 762b3e9
Update README.md
josemoracard 584277f
Update solution.hide.py
josemoracard 58e5a67
Update README.es.md
josemoracard bda5448
Update test.py
josemoracard 255205e
Update README.md
josemoracard 90846cc
Update README.es.md
josemoracard 4916ff4
Update README.md
josemoracard 5adb95e
Update solution.hide.py
josemoracard 5121f6c
Update solution.hide.py
josemoracard b95c13d
Update solution.hide.py
josemoracard 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
Create README.es.md
- Loading branch information
commit 27c687ec124869618cf455dd9922db8e09490233
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
# `40` Compute robot distance | ||
| ||
## 📝 Instrucciones: | ||
| ||
Un robot se mueve en un plano comenzando desde el punto de inicio (0,0). El robot puede moverse hacia ARRIBA (UP), ABAJO (DOWN), IZQUIERDA (LEFT) y DERECHA (RIGHT) con pasos dados por parámetro. La traza del movimiento del robot se muestra de la siguiente manera: | ||
| ||
+ UP 5 | ||
+ DOWN 3 | ||
+ LEFT 3 | ||
+ RIGHT 2 | ||
| ||
Los números después de la dirección son los pasos. Por favor, escribe un programa llamado `compute_robot_distance()` para calcular la distancia final después de una secuencia de movimientos desde el punto original. Si la distancia es un número decimal, simplemente imprime el entero más cercano. | ||
| ||
## 📎 Ejemplo de entrada: | ||
| ||
```py | ||
compute_robot_distance("UP 5 DOWN 3 LEFT 3 RIGHT 2") | ||
``` | ||
| ||
## 📎 Ejemplo de salida: | ||
| ||
```py | ||
2 | ||
``` |
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.
Debe recibir una lista de strings
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.
done