freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-458-permutations-of...

55 lines
621 B
Markdown
Raw Normal View History

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