diff --git a/curriculum/challenges/espanol/02-javascript-algorithms-and-data-structures/basic-javascript/find-the-length-of-a-string.md b/curriculum/challenges/espanol/02-javascript-algorithms-and-data-structures/basic-javascript/find-the-length-of-a-string.md index d04f252d9cd..939c2a1c9ac 100644 --- a/curriculum/challenges/espanol/02-javascript-algorithms-and-data-structures/basic-javascript/find-the-length-of-a-string.md +++ b/curriculum/challenges/espanol/02-javascript-algorithms-and-data-structures/basic-javascript/find-the-length-of-a-string.md @@ -21,7 +21,7 @@ Por ejemplo, si creamos una variable `const firstName = "Ada"`, podríamos averi # --instructions-- -Usa la propiedad `.length` para contar el número de caracteres en la variable `lastName` y asignarla a `lastNameLength`. +Utilice la propiedad `.length` para establecer `lastNameLength` al número de caracteres en `lastName`. # --hints-- diff --git a/curriculum/challenges/espanol/07-scientific-computing-with-python/scientific-computing-with-python-projects/arithmetic-formatter.md b/curriculum/challenges/espanol/07-scientific-computing-with-python/scientific-computing-with-python-projects/arithmetic-formatter.md index b03590db987..9b2c8ad91fd 100644 --- a/curriculum/challenges/espanol/07-scientific-computing-with-python/scientific-computing-with-python-projects/arithmetic-formatter.md +++ b/curriculum/challenges/espanol/07-scientific-computing-with-python/scientific-computing-with-python-projects/arithmetic-formatter.md @@ -1,6 +1,6 @@ --- id: 5e44412c903586ffb414c94c -title: Arithmetic Formatter +title: Formateador aritmético challengeType: 10 forumTopicId: 462359 dashedName: arithmetic-formatter @@ -8,25 +8,82 @@ dashedName: arithmetic-formatter # --description-- -Create a function that receives a list of strings that are arithmetic problems and returns the problems arranged vertically and side-by-side. +Estarás [trabajando en este proyecto con nuestro código inicial de Replit](https://replit.com/github/freeCodeCamp/boilerplate-arithmetic-formatter). -You can access [the full project description and starter code on Replit](https://replit.com/github/freeCodeCamp/boilerplate-arithmetic-formatter). +# --instructions-- -After going to that link, fork the project. Once you complete the project based on the instructions in 'README.md', submit your project link below. +Los estudiantes de primaria suelen colocar los problemas aritméticos en vertical para facilitar su resolución. Por ejemplo, "235 + 52" se convierte a: -We are still developing the interactive instructional part of the Python curriculum. For now, here are some videos on the freeCodeCamp.org YouTube channel that will teach you everything you need to know to complete this project: +```py + 235 ++ 52 +----- +``` -