From 209d41fcdd7ab7b0372ca4af123dd426790b4d32 Mon Sep 17 00:00:00 2001 From: Daksh Goyal <39990619+daksh-goyal@users.noreply.github.com> Date: Mon, 11 May 2020 18:05:16 +0530 Subject: [PATCH] Fixes a Typo in Project Euler Problem 70 (#38782) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fixed a Typo in Eulers Problem 70 Line 15 should say "Find the value of n, 1 < n < 10**7, for which φ(n) is a permutation of n and the ratio n/φ(n) produces a minimum." instead of Find the value of n, 1 < n < 107, for which φ(n) is a permutation of n and the ratio n/φ(n) produces a minimum. * Updated the Markdown Fixes the markdown to display proper superscript rather than just using ** to denote a superscript --- .../project-euler/problem-70-totient-permutation.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-70-totient-permutation.english.md b/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-70-totient-permutation.english.md index dc196fd0d0..3af0c008c7 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-70-totient-permutation.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-70-totient-permutation.english.md @@ -12,7 +12,7 @@ Euler's Totient function, φ(n) [sometimes called the phi function], Interestingly, φ(87109)=79180, and it can be seen that 87109 is a permutation of 79180. -Find the value of n, 1 < n < 107, for which φ(n) is a permutation of n and the ratio n/φ(n) produces a minimum. +Find the value of n, 1 < n < 107, for which φ(n) is a permutation of n and the ratio n/φ(n) produces a minimum.