I hereby claim:
- I am elias-utf8 on github.
- I am eli4s (https://keybase.io/eli4s) on keybase.
- I have a public key ASD8Bt1Rm_pukb88rzGegDBdVw7ME7eP2zl3kYmHStGmgwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
(** Bubble sort | |
@author Elias GAUTHIER | |
@date 29/09/2025 | |
**) | |
let rec bubble_sort (lst : int list) : int list = | |
match lst with | |
| [] -> [] | |
| [e] -> [e] | |
| _ -> |