From 4c8c9da9edb9e3e36c191c3090fa898b5ddbd315 Mon Sep 17 00:00:00 2001 From: Jeonghyun Min <20122791@tafe.wa.edu.au> Date: Thu, 7 Nov 2024 07:57:10 +0800 Subject: [PATCH] Update: URL regarding sorting algorithm comparison --- sorts/stopwatch_sort.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sorts/stopwatch_sort.py b/sorts/stopwatch_sort.py index 2707ed8e8..c86420140 100644 --- a/sorts/stopwatch_sort.py +++ b/sorts/stopwatch_sort.py @@ -1,6 +1,9 @@ """ One of reasons for learning about algorithms is that they can affect the efficiency of a program. + +More info on: https://en.wikipedia.org/wiki/Sorting_algorithm + Therefore, it will be helpful for learners to see each algorithm's sorting process speed and compare the results of different algorithms.