freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-241-perfection-quot...

55 lines
636 B
Markdown
Raw Normal View History

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