Skip to content

Commit 8677488

Browse files
authored
Update README.es.md
1 parent c442c87 commit 8677488

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/38-sort-tuples-ascending/README.es.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Escribe una función llamada `sort_tuples_ascending()` para ordenar las tuplas (
88
2. Luego, ordenar según la edad.
99
3. Después, ordenar por puntuación.
1010

11-
La prioridad es que name > age > score.
11+
La prioridad es `name` > `age` > `score`.
1212

1313
## 📎 Ejemplo de entrada:
1414

1515
```py
16-
sort_tuples_ascending("Tom,19,80 John,20,90 Jony,17,91 Jony,17,93 Jason,21,85")
16+
sort_tuples_ascending(['Tom,19,80', 'John,20,90', 'Jony,17,91', 'Jony,17,93', 'Jason,21,85'])
1717
```
1818

1919
## 📎 Ejemplo de salida:

0 commit comments

Comments
 (0)