1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/challenges/sorting-algorithms
2021-06-29 20:41:11 +02:00
..
solutions feat(solutions): add sorting-algorithms/python/insertion-sort 2021-06-29 20:41:11 +02:00
test feat(challenges): add sorting-algorithms 2021-06-29 20:01:58 +02:00
README.md feat(challenges): add sorting-algorithms 2021-06-29 20:01:58 +02:00

sorting-algorithms

Created by @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.

Write a function that takes a list of integers and sort them in ascending order.

Source

Examples

See the test folder for examples of input/output.