freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-70-totient-permutat...

608 B

id challengeType title videoUrl localeTitle
5900f3b21000cf542c50fec5 5 Problem 70: Totient permutation

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler70(), 8319823, "<code>euler70()</code> should return 8319823.");'

Challenge Seed

function euler70() {
  // Good luck!
  return true;
}

euler70();

Solution

// solution required