mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
fix(curriculum): correct numbers in selection sort example (#64920)
This commit is contained in:
@@ -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
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user