freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-299-three-similar-t...

55 lines
621 B
Markdown

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