mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
fix(curriculum): Typo in daily challenges 103, 104, 107 (#63609)
This commit is contained in:
+1
-1
@@ -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--
|
||||
|
||||
+1
-1
@@ -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.
|
||||
|
||||
+1
-1
@@ -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"`.
|
||||
|
||||
+1
-1
@@ -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--
|
||||
|
||||
+1
-1
@@ -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.
|
||||
|
||||
+1
-1
@@ -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"`.
|
||||
|
||||
Reference in New Issue
Block a user