2022-08-02 02:04:00 +03:00
|
|
|
# bubblesort
|
|
|
|
|
2023-07-20 04:04:09 +03:00
|
|
|
## Run Guide
|
2022-08-02 02:04:00 +03:00
|
|
|
|
2023-07-20 04:04:09 +03:00
|
|
|
To run this program, run:
|
2022-08-02 02:04:00 +03:00
|
|
|
```bash
|
2023-09-29 20:00:07 +03:00
|
|
|
leo run bubble_sort <inputs>
|
2022-08-02 02:04:00 +03:00
|
|
|
```
|
|
|
|
|
2023-07-20 04:04:09 +03:00
|
|
|
## Execute Guide
|
|
|
|
|
|
|
|
To execute this program, run:
|
2022-08-02 02:04:00 +03:00
|
|
|
```bash
|
2023-09-29 20:00:07 +03:00
|
|
|
leo execute bubble_sort <inputs>
|
2022-08-04 05:46:44 +03:00
|
|
|
```
|
|
|
|
|
2022-09-21 10:07:10 +03:00
|
|
|
## Overview
|
2022-08-04 05:46:44 +03:00
|
|
|
|
|
|
|
This example shows how to sort an array.
|
|
|
|
|
|
|
|
It takes the input data from inputs/bubblesort.in
|