From 5eea0731aa2c250b10696ba76e7bf745fd6f4b68 Mon Sep 17 00:00:00 2001 From: Supravisor <153783117+Supravisor@users.noreply.github.com> Date: Tue, 10 Mar 2026 18:25:51 +1300 Subject: [PATCH] fix(curriculum): guaranteed typo in daily challenge (#66307) --- .../698a1a73ade5ac0e19180fa8.md | 2 +- .../daily-coding-challenges-python/698a1a73ade5ac0e19180fa8.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/698a1a73ade5ac0e19180fa8.md b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/698a1a73ade5ac0e19180fa8.md index ea1f19a9719..4777a938a69 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/698a1a73ade5ac0e19180fa8.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/698a1a73ade5ac0e19180fa8.md @@ -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-- diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-python/698a1a73ade5ac0e19180fa8.md b/curriculum/challenges/english/blocks/daily-coding-challenges-python/698a1a73ade5ac0e19180fa8.md index 1789003e8c0..c4421e03435 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-python/698a1a73ade5ac0e19180fa8.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-python/698a1a73ade5ac0e19180fa8.md @@ -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--