freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-52-permuted-multipl...

645 B

id challengeType title videoUrl localeTitle
5900f3a01000cf542c50feb3 5 Problem 52: Permuted multiples

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

permutedMultiples();

Solution

// solution required