freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-397-triangle-on-par...

55 lines
636 B
Markdown

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