1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00
Files
programming-challenges/challenges/sorting-algorithms/README.md
2021-06-29 20:01:58 +02:00

19 lines
534 B
Markdown

# sorting-algorithms
Created by [@Divlo](https://github.com/Divlo) on 29 June 2021.
## Instructions
In computer science, a sorting algorithm is an algorithm that puts elements of a list in a certain order.
We will use the [numerical order](https://en.wikipedia.org/wiki/Numerical_order).
Write a function that takes a list of integers and sort them in ascending order.
## Source
- [Wikipedia - Sorting algorithm](https://en.wikipedia.org/wiki/Sorting_algorithm)
## Examples
See the `test` folder for examples of input/output.