update notes

This commit is contained in:
Trance-0
2025-02-25 20:45:34 -06:00
parent 27bff83685
commit abc85a9375
4 changed files with 174 additions and 4 deletions

View File

@@ -164,7 +164,7 @@ Example using `std::sort()`
- http://www.cplusplus.com/reference/algorithm/sort/
- Requires random access iterators.
- Requires elements being sorted implement operator `<` (less than)
- Requires elements being sorted implement `operator<` (less than)
```cpp
#include <algorithm>