1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

feat(solutions): add sorting-algorithms/dart/bubble-sort

This commit is contained in:
Divlo
2021-06-29 22:38:17 +02:00
parent aa3eec06ba
commit 50a1cda3d8
18 changed files with 62 additions and 7 deletions

View File

@ -19,7 +19,7 @@ You are given a list of `n` array definitions and your job is to figure out what
### Input
- **Line 1:** An integer `n` for the number of array assignments
- **`N` next lines:** One array assignment per line: `array_identifier` [ `first_index` .. `last_index` ] = `last_index - first_index + 1` integers separated by space
- **`n` next lines:** One array assignment per line: `array_identifier` [ `first_index` .. `last_index` ] = `last_index - first_index + 1` integers separated by space
- **Line `n+2`:** Element to print: `arr` [ `i` ]
### Constraints