Skip to content

Commit e9516fa

Browse files
authored
fix(curriculum): Typo in daily challenges 103, 104, 107 (freeCodeCamp#63609)
1 parent f8dbb50 commit e9516fa

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328c6.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Given two integers, return the least common multiple (LCM) of the two numbers.
1212
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:
1313

1414
- Multiples of `4` are `4`, `8`, `12` and so on.
15-
- Multplies of `6` are `6`, `12`, `18` and so on.
15+
- Multiples of `6` are `6`, `12`, `18` and so on.
1616
- `12` is the smallest number that is a multiple of both.
1717

1818
# --hints--

curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328c7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: challenge-104
77

88
# --description--
99

10-
Given an array of recipe ingredients and a number to scale the recipe, return a an array with the quantities scaled accordingly.
10+
Given an array of recipe ingredients and a number to scale the recipe, return an array with the quantities scaled accordingly.
1111

1212
- Each item in the given array will be a string in the format: `"quantity unit ingredient"`. For example `"2 C Flour"`.
1313
- Scale the quantity by the given number. Do not include any trailing zeros and do not convert any units.

curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68ffb91507a5b645769328ca.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: challenge-107
77

88
# --description--
99

10-
Given an integer (`n`), return an array of integers from `1` to `n` (inclusive), replacing numbers that a multiple of:
10+
Given an integer (`n`), return an array of integers from `1` to `n` (inclusive), replacing numbers that are multiple of:
1111

1212
- 3 with `"Fizz"`.
1313
- 5 with `"Buzz"`.

curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328c6.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Given two integers, return the least common multiple (LCM) of the two numbers.
1212
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:
1313

1414
- Multiples of `4` are `4`, `8`, `12` and so on.
15-
- Multplies of `6` are `6`, `12`, `18` and so on.
15+
- Multiples of `6` are `6`, `12`, `18` and so on.
1616
- `12` is the smallest number that is a multiple of both.
1717

1818
# --hints--

curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328c7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: challenge-104
77

88
# --description--
99

10-
Given an array of recipe ingredients and a number to scale the recipe, return a an array with the quantities scaled accordingly.
10+
Given an array of recipe ingredients and a number to scale the recipe, return an array with the quantities scaled accordingly.
1111

1212
- Each item in the given array will be a string in the format: `"quantity unit ingredient"`. For example `"2 C Flour"`.
1313
- Scale the quantity by the given number. Do not include any trailing zeros and do not convert any units.

curriculum/challenges/english/blocks/daily-coding-challenges-python/68ffb91507a5b645769328ca.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: challenge-107
77

88
# --description--
99

10-
Given an integer (`n`), return an array of integers from `1` to `n` (inclusive), replacing numbers that a multiple of:
10+
Given an integer (`n`), return an array of integers from `1` to `n` (inclusive), replacing numbers that are multiple of:
1111

1212
- 3 with `"Fizz"`.
1313
- 5 with `"Buzz"`.

0 commit comments

Comments
 (0)