- Notifications
You must be signed in to change notification settings - Fork 182
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 95337e995a4488d8df6ee9d3b6a693306e408409
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,34 @@ | ||
| # `37` Validity of password | ||
| | ||
| ## 📝 Instrucciones: | ||
| | ||
| Un sitio web requiere que los usuarios ingresen un nombre de usuario y una contraseña para registrarse. Escribe una función llamada `valid_password()` para verificar la validez de la contraseña ingresada por los usuarios. A continuación, se detallan los criterios para verificar la contraseña: | ||
| | ||
| 1. Al menos 1 letra entre [a-z]. | ||
| 2. Al menos 1 número entre [0-9]. | ||
| 3. Al menos 1 letra entre [A-Z]. | ||
| 4. Al menos 1 carácter de [$#@]. | ||
| 5. Longitud mínima de la contraseña: 6. | ||
| 6. Longitud máxima de la contraseña: 12. | ||
| | ||
| Tu programa debería aceptar una secuencia de contraseñas separadas por comas y verificarlas según los criterios anteriores. Las contraseñas que cumplan con los criterios deben imprimirse, cada una separada por una coma. | ||
| | ||
| ## 📎 Ejemplo de entrada: | ||
| | ||
| ```text | ||
| valid_password(ABd1234@1,a F1#,2w3E*,2We3345) | ||
| ``` | ||
| | ||
| ## 📎 Ejemplo de salida: | ||
| | ||
| ```text | ||
| ABd1234@1 | ||
| ``` | ||
| | ||
| ## 💡 Pistas: | ||
| | ||
| + Lee sobre expresiones regulares en Python. | ||
| | ||
| + Necesitarás importar el módulo 're' (regular expressions) para poder usar la función `search()`. | ||
| | ||
| + Para importarlo, copia y pega lo siguiente al inicio de tu archivo `import re`. | ||
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.
Cambia para que solo reciba una contraseña, cambia todos los archivos del ejercicio
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
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.
Acomodar regular expression del solution. La regular expression debe encargarse de chequear si no obtiene alguno de los caracteres validos (Sin separarlo en grupos diferentes). Debes dejar una unica solucion.
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