fix(curriculum): guaranteed typo in daily challenge (#66307)

This commit is contained in:
Supravisor 2026-03-10 18:25:51 +13:00 committed by GitHub
parent 96f80a6493
commit 5eea0731aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ dashedName: challenge-205
Given two integers, determine how many perfect cubes exist in the range between and including the two numbers.
- The lower number is not garanteed to be the first argument.
- The lower number is not guaranteed to be the first argument.
- A number is a perfect cube if there exists an integer (`n`) where `n * n * n = number`. For example, 27 is a perfect cube because `3 * 3 * 3 = 27`.
# --hints--

View File

@ -9,7 +9,7 @@ dashedName: challenge-205
Given two integers, determine how many perfect cubes exist in the range between and including the two numbers.
- The lower number is not garanteed to be the first argument.
- The lower number is not guaranteed to be the first argument.
- A number is a perfect cube if there exists an integer (`n`) where `n * n * n = number`. For example, 27 is a perfect cube because `3 * 3 * 3 = 27`.
# --hints--