Skip to content

Commit e8c667b

Browse files
authored
Update README.md
1 parent c6a52ad commit e8c667b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ The priority is that name > age > score.
1313
## 📎 Example input:
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
## 📎 Example output:
2020

2121
```py
22-
[('John', '20', '90'), ('Jony', '17', '91'), ('Jony', '17', '93'), ('Jason', '21', '85'), ('Tom', '19', '80')]
22+
[('Jason', '21', '85'), ('John', '20', '90'), ('Jony', '17', '91'), ('Jony', '17', '93'), ('Tom', '19', '80')]
2323
```
2424

2525
## 💡 Hints:

0 commit comments

Comments
 (0)