From bbf63562149c21248e548951db09b54ba76a45e8 Mon Sep 17 00:00:00 2001 From: Kyle Pfister Date: Wed, 14 Aug 2024 02:01:08 -0500 Subject: [PATCH] fix(curriculum): update hint text to 'You should have' in the Luhn algorithm challenge (#55853) --- .../65687f47f9001dd35bdcd5ab.md | 2 +- .../656b47dc2cf39e37025dc033.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-how-to-work-with-numbers-and-strings-by-implementing-the-luhn-algorithm/65687f47f9001dd35bdcd5ab.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-how-to-work-with-numbers-and-strings-by-implementing-the-luhn-algorithm/65687f47f9001dd35bdcd5ab.md index 978a37e4879..bd5a4669ae5 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-how-to-work-with-numbers-and-strings-by-implementing-the-luhn-algorithm/65687f47f9001dd35bdcd5ab.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-how-to-work-with-numbers-and-strings-by-implementing-the-luhn-algorithm/65687f47f9001dd35bdcd5ab.md @@ -11,7 +11,7 @@ Change the value of `card_number` such that `'INVALID!'` is printed to the conso # --hints-- -You could have `card_number = '4111-1111-4555-1141'` within the main function. +You should have `card_number = '4111-1111-4555-1141'` within the main function. ```js ({ diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-how-to-work-with-numbers-and-strings-by-implementing-the-luhn-algorithm/656b47dc2cf39e37025dc033.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-how-to-work-with-numbers-and-strings-by-implementing-the-luhn-algorithm/656b47dc2cf39e37025dc033.md index 372e8a5ddb0..a68fcabc895 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-how-to-work-with-numbers-and-strings-by-implementing-the-luhn-algorithm/656b47dc2cf39e37025dc033.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-how-to-work-with-numbers-and-strings-by-implementing-the-luhn-algorithm/656b47dc2cf39e37025dc033.md @@ -11,7 +11,7 @@ Reverse the order of the digits in the last four digits of `card_number`, by usi # --hints-- -You could have `card_number_reversed = card_number[-1:-5:-1]` within the `verify_card_number` function. Expected `--fcc-actual--` to equal `--fcc-expected--`. +You should have `card_number_reversed = card_number[-1:-5:-1]` within the `verify_card_number` function. Expected `--fcc-actual--` to equal `--fcc-expected--`. ```js ({