fix(curriculum): specify no argument for Merge Sort Algorithm (#61780)

This commit is contained in:
Supravisor
2025-08-12 19:16:33 +12:00
committed by GitHub
parent 7634b5c8a1
commit d325bc6d32
@@ -9,7 +9,7 @@ dashedName: step-6
Now that you've divided the `array` list into two separate lists, you'll keep dividing each list until every element stands alone in its own list. A list with a single number is always sorted.
To do that, recursively call `merge_sort` inside your function.
To do that, recursively call `merge_sort` inside your function. Do not pass in any argument for now.
# --hints--