fix comparing-and-sorting-tuples answer (#39027)

* fix comparing-and-sorting-tuples answer

apply flag to sorted function

* remove commas from numpy array

Co-authored-by: Shaun Hamilton <51722130+Sky020@users.noreply.github.com>
This commit is contained in:
Gabriele Corti
2020-06-19 16:47:34 +02:00
committed by GitHub
parent 80223e5e39
commit 5ddaf0fdf2
2 changed files with 4 additions and 4 deletions

View File

@ -28,11 +28,11 @@ question:
answers:
- |
`[1, 2, 3, 4, 5]`
`[1 2 3 4 5]`
- |
`[1, 2, 20, 4, 5]`
`[1 2 20 4 5]`
- |
`[1, 20, 3, 4, 5]`
`[1 20 3 4 5]`
solution: 2
```