freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-479-roots-on-the-ri...

55 lines
615 B
Markdown

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