freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-421-prime-factors-o...

55 lines
640 B
Markdown

---
id: 5900f5131000cf542c510024
challengeType: 5
title: 'Problem 421: Prime factors of n15+1'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler421(), 2304215802083466200, "<code>euler421()</code> should return 2304215802083466200.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler421() {
// Good luck!
return true;
}
euler421();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>