From e9516faca48322f4ffb34228bce26c6a42ff836b Mon Sep 17 00:00:00 2001 From: Tom <20648924+moT01@users.noreply.github.com> Date: Fri, 7 Nov 2025 10:33:38 -0600 Subject: [PATCH] fix(curriculum): Typo in daily challenges 103, 104, 107 (#63609) --- .../68ffb91507a5b645769328c6.md | 2 +- .../68ffb91507a5b645769328c7.md | 2 +- .../68ffb91507a5b645769328ca.md | 2 +- .../daily-coding-challenges-python/68ffb91507a5b645769328c6.md | 2 +- .../daily-coding-challenges-python/68ffb91507a5b645769328c7.md | 2 +- .../daily-coding-challenges-python/68ffb91507a5b645769328ca.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328c6.md b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328c6.md index 8044f8ad7f0..ff823a4a7f8 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328c6.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328c6.md @@ -12,7 +12,7 @@ Given two integers, return the least common multiple (LCM) of the two numbers. The LCM of two numbers is the smallest positive integer that is a multiple of both numbers. For example, given `4` and `6`, return `12` because: - Multiples of `4` are `4`, `8`, `12` and so on. -- Multplies of `6` are `6`, `12`, `18` and so on. +- Multiples of `6` are `6`, `12`, `18` and so on. - `12` is the smallest number that is a multiple of both. # --hints-- diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328c7.md b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328c7.md index 0c3bd5d16bf..e48b62a74fd 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328c7.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328c7.md @@ -7,7 +7,7 @@ dashedName: challenge-104 # --description-- -Given an array of recipe ingredients and a number to scale the recipe, return a an array with the quantities scaled accordingly. +Given an array of recipe ingredients and a number to scale the recipe, return an array with the quantities scaled accordingly. - Each item in the given array will be a string in the format: `"quantity unit ingredient"`. For example `"2 C Flour"`. - Scale the quantity by the given number. Do not include any trailing zeros and do not convert any units. diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328ca.md b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328ca.md index 6f4bbb71f44..784aba8e268 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328ca.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328ca.md @@ -7,7 +7,7 @@ dashedName: challenge-107 # --description-- -Given an integer (`n`), return an array of integers from `1` to `n` (inclusive), replacing numbers that a multiple of: +Given an integer (`n`), return an array of integers from `1` to `n` (inclusive), replacing numbers that are multiple of: - 3 with `"Fizz"`. - 5 with `"Buzz"`. diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328c6.md b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328c6.md index f782013cf33..9e8e1976617 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328c6.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328c6.md @@ -12,7 +12,7 @@ Given two integers, return the least common multiple (LCM) of the two numbers. The LCM of two numbers is the smallest positive integer that is a multiple of both numbers. For example, given `4` and `6`, return `12` because: - Multiples of `4` are `4`, `8`, `12` and so on. -- Multplies of `6` are `6`, `12`, `18` and so on. +- Multiples of `6` are `6`, `12`, `18` and so on. - `12` is the smallest number that is a multiple of both. # --hints-- diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328c7.md b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328c7.md index c66138a143c..06becb7c6f3 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328c7.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328c7.md @@ -7,7 +7,7 @@ dashedName: challenge-104 # --description-- -Given an array of recipe ingredients and a number to scale the recipe, return a an array with the quantities scaled accordingly. +Given an array of recipe ingredients and a number to scale the recipe, return an array with the quantities scaled accordingly. - Each item in the given array will be a string in the format: `"quantity unit ingredient"`. For example `"2 C Flour"`. - Scale the quantity by the given number. Do not include any trailing zeros and do not convert any units. diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328ca.md b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328ca.md index af0c86a0f24..8b0b03782d2 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328ca.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328ca.md @@ -7,7 +7,7 @@ dashedName: challenge-107 # --description-- -Given an integer (`n`), return an array of integers from `1` to `n` (inclusive), replacing numbers that a multiple of: +Given an integer (`n`), return an array of integers from `1` to `n` (inclusive), replacing numbers that are multiple of: - 3 with `"Fizz"`. - 5 with `"Buzz"`.