From 9d26d6bf9ba1bfff4191cf5e9b0a1e73d31c1831 Mon Sep 17 00:00:00 2001 From: bot50 Date: Mon, 26 Feb 2024 19:24:47 +0000 Subject: [PATCH] kukemuna-cs50/problems/2024/x/sort@20240226T192447.386441842Z --- answers.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 answers.txt diff --git a/answers.txt b/answers.txt new file mode 100644 index 0000000..737b5cd --- /dev/null +++ b/answers.txt @@ -0,0 +1,11 @@ +sort1 uses: Bubble sort + +How do you know?: Sorted list runs considerably faster than reserved on random list, regardless of the list size + +sort2 uses: Merge sort + +How do you know?: Way faster than the other two + +sort3 uses: Selection sort + +How do you know?: There is not much difference in execution time between sorted, reversed and random lists