--- id: 5900f4481000cf542c50ff5b challengeType: 5 title: 'Problem 220: Heighway Dragon' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler220(), 139776, 963904, "euler220() should return 139776, 963904.");' ```
## Challenge Seed
```js function euler220() { // Good luck! return true; } euler220(); ```
## Solution
```js // solution required ```