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