fix(curriculum): Fix a typo in "Problem 141: Investigating progressive numbers, n, which are also square" (#43647)

This commit is contained in:
Hankai Xia
2021-10-01 14:02:13 +08:00
committed by GitHub
parent cfc9b7258d
commit cf88dfd3ce

View File

@ -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--