fix(curriculum): correct numbers in selection sort example (#64920)

This commit is contained in:
Ram
2025-12-30 22:25:42 +01:00
committed by GitHub
parent 11ec8d4a9e
commit 7f479c6824
@@ -168,7 +168,7 @@ Your `selection_sort` should follow the selection sort algorithm, swapping the m
)
```
`selection_sort([33, 1, 89, 2, 67, 245])` should return `[1, 2, 33, 89, 67, 245]`.
`selection_sort([33, 1, 89, 2, 67, 245])` should return `[1, 2, 33, 67, 89, 245]`.
```js
(