Skip to content

Instantly share code, notes, and snippets.

@ggssh
Created July 28, 2023 02:39
Show Gist options
  • Save ggssh/3e3b45292cde45c944ce66ff4e2a8b94 to your computer and use it in GitHub Desktop.
Save ggssh/3e3b45292cde45c944ce66ff4e2a8b94 to your computer and use it in GitHub Desktop.
Monkey Sort
fn monkey_sort<T: Ord>(arr: &mut [T]) {
while !is_sorted(arr) {
arr.shuffle(&mut rand::thread_rng());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment