chore(curriculum): Python Merge Sort Algorithm add quotes to strings (#55435)

This commit is contained in:
Supravisor 2024-07-08 17:51:39 +12:00 committed by GitHub
parent d37fac68ab
commit 4cde593f1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ dashedName: step-30
# --description--
Use the `print()` function to print the string `Unsorted array:`.
Use the `print()` function to print the string `'Unsorted array:'`.
# --hints--

View File

@ -7,7 +7,7 @@ dashedName: step-33
# --description--
At this point, the `numbers` list has been sorted. Call the `print` function to print string `Sorted array: ` and the sorted list.
At this point, the `numbers` list has been sorted. Call the `print` function to print string `'Sorted array: '` and the sorted list.
To do that, concatenate `'Sorted array: '` and `str(numbers)` in the `print()` call.