Fixes a Typo in Project Euler Problem 70 (#38782)

* Fixed a Typo in Eulers Problem 70

Line 15 should say "Find the value of <var>n</var>, 1 < <var>n</var> < 10**7, for which φ(<var>n</var>) is a permutation of <var>n</var> and the ratio <var>n</var>/φ(<var>n</var>) produces a minimum." instead of Find the value of <var>n</var>, 1 < <var>n</var> < 107, for which φ(<var>n</var>) is a permutation of <var>n</var> and the ratio <var>n</var>/φ(<var>n</var>) produces a minimum.

* Updated the Markdown 

Fixes the markdown to display proper superscript rather than just using ** to denote a superscript
This commit is contained in:
Daksh Goyal
2020-05-11 18:05:16 +05:30
committed by GitHub
parent 161c0c20a2
commit 209d41fcdd

View File

@@ -12,7 +12,7 @@ Euler's Totient function, φ(<var>n</var>) [sometimes called the phi function],
Interestingly, φ(87109)=79180, and it can be seen that 87109 is a permutation of 79180.
Find the value of <var>n</var>, 1 < <var>n</var> < 107, for which φ(<var>n</var>) is a permutation of <var>n</var> and the ratio <var>n</var>/φ(<var>n</var>) produces a minimum.
Find the value of <var>n</var>, 1 < <var>n</var> < 10<sup>7</sup>, for which φ(<var>n</var>) is a permutation of <var>n</var> and the ratio <var>n</var>/φ(<var>n</var>) produces a minimum.
</section>