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

55 lines
645 B
Markdown
Raw Normal View History

---
id: 5900f3a01000cf542c50feb3
challengeType: 5
title: 'Problem 52: Permuted multiples'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(permutedMultiples(), 142857, "<code>permutedMultiples()</code> should return 142857.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function permutedMultiples() {
// Good luck!
return true;
}
permutedMultiples();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>