--- id: 5900f4f71000cf542c51000a challengeType: 5 title: 'Problem 395: Pythagorean tree' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler395(), 28.2453753155, "euler395() should return 28.2453753155.");' ```
## Challenge Seed
```js function euler395() { // Good luck! return true; } euler395(); ```
## Solution
```js // solution required ```