From cf9f06918af0e69e7ff9a48b4915b70b78f4d454 Mon Sep 17 00:00:00 2001 From: David Rivera Morales <68245315+MxDui@users.noreply.github.com> Date: Wed, 24 Nov 2021 12:10:54 -0600 Subject: [PATCH] fix(curriculum): typo in the description in Problem 29: Distinct powers (#44243) * Typo fixed in problem 29 Distinct * Typo fixed using MathJax * Update curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-29-distinct-powers.md Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com> Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com> --- .../project-euler/problem-29-distinct-powers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-29-distinct-powers.md b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-29-distinct-powers.md index 28c05dfc85..0fc363ab98 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-29-distinct-powers.md +++ b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-29-distinct-powers.md @@ -8,7 +8,7 @@ dashedName: problem-29-distinct-powers # --description-- -Consider all integer combinations of ab for 2 ≤ a ≤ 5 and 2 ≤ b ≤ 5: +Consider all integer combinations of $a^b$ for 2 ≤ a ≤ 5 and 2 ≤ b ≤ 5:
22=4, 23=8, 24=16, 25=32
@@ -23,7 +23,7 @@ If they are then placed in numerical order, with any repeats removed, we get the 4, 8, 9, 16, 25, 27, 32, 64, 81, 125, 243, 256, 625, 1024, 3125
-How many distinct terms are in the sequence generated by `ab` for 2 ≤ `a` ≤ `n` and 2 ≤ `b` ≤ `n`? +How many distinct terms are in the sequence generated by $a^b$ for 2 ≤ `a` ≤ `n` and 2 ≤ `b` ≤ `n`? # --hints--