freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-467-superinteger.ar...

55 lines
610 B
Markdown

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