Documentation Index
Fetch the complete documentation index at: https://mintlify.com/sh2aliyev/notes/llms.txt
Use this file to discover all available pages before exploring further.
| Stable? | Time | Space |
|---|---|---|
| No | O(n^2) | O(1) |
Explanation
Move from left to right through the list. For each position, scan the remaining unsorted part to find the smallest element, then swap it into the current position. Repeat until the unsorted part is empty.
Implementation
Selection Sort