Skip to content

Instantly share code, notes, and snippets.

View elias-utf8's full-sized avatar
:electron:
are you a one or a zero?

Elias elias-utf8

:electron:
are you a one or a zero?
View GitHub Profile

Keybase proof

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:

(** Bubble sort
@author Elias GAUTHIER
@date 29/09/2025
**)
let rec bubble_sort (lst : int list) : int list =
match lst with
| [] -> []
| [e] -> [e]
| _ ->