From 4cde593f1c62f0d7c97349b951bf4a39227d1ffb Mon Sep 17 00:00:00 2001 From: Supravisor <153783117+Supravisor@users.noreply.github.com> Date: Mon, 8 Jul 2024 17:51:39 +1200 Subject: [PATCH] chore(curriculum): Python Merge Sort Algorithm add quotes to strings (#55435) --- .../6569c05b9166f9d5bb36c09e.md | 2 +- .../6569c2cbf6c993ea8cd85682.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/6569c05b9166f9d5bb36c09e.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/6569c05b9166f9d5bb36c09e.md index 20da31d7804..788d1f15432 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/6569c05b9166f9d5bb36c09e.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/6569c05b9166f9d5bb36c09e.md @@ -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-- diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/6569c2cbf6c993ea8cd85682.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/6569c2cbf6c993ea8cd85682.md index 674a55939ae..9fcd6bd54f2 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/6569c2cbf6c993ea8cd85682.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-data-structures-by-building-the-merge-sort-algorithm/6569c2cbf6c993ea8cd85682.md @@ -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.