freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-210-obtuse-angled-t...

55 lines
641 B
Markdown
Raw Normal View History

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