fix(curriculum): Typo in daily challenges 103, 104, 107 (#63609)

This commit is contained in:
Tom 2025-11-07 10:33:38 -06:00 committed by GitHub
parent f8dbb50b7e
commit e9516faca4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 6 additions and 6 deletions

View File

@ -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--

View File

@ -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.

View File

@ -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"`.

View File

@ -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--

View File

@ -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.

View File

@ -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"`.