From cf88dfd3ce1b54046a60655dea8469ebaf8bf660 Mon Sep 17 00:00:00 2001 From: Hankai Xia Date: Fri, 1 Oct 2021 14:02:13 +0800 Subject: [PATCH] fix(curriculum): Fix a typo in "Problem 141: Investigating progressive numbers, n, which are also square" (#43647) --- ...investigating-progressive-numbers-n-which-are-also-square.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-141-investigating-progressive-numbers-n-which-are-also-square.md b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-141-investigating-progressive-numbers-n-which-are-also-square.md index 6e11220d65..9e1876cbe6 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-141-investigating-progressive-numbers-n-which-are-also-square.md +++ b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-141-investigating-progressive-numbers-n-which-are-also-square.md @@ -16,7 +16,7 @@ We will call such numbers, $n$, progressive. Some progressive numbers, such as 9 and 10404 = ${102}^2$, also happen to be perfect squares. The sum of all progressive perfect squares below one hundred thousand is 124657. -Find the sum of all progressive perfect squares below one trillion (${101}^2$). +Find the sum of all progressive perfect squares below one trillion (${10}^{12}$). # --hints--