freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-220-heighway-dragon...

623 B

id challengeType title videoUrl localeTitle
5900f4481000cf542c50ff5b 5 Problem 220: Heighway Dragon

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler220(), 139776, 963904, "<code>euler220()</code> should return 139776, 963904.");'

Challenge Seed

function euler220() {
  // Good luck!
  return true;
}

euler220();

Solution

// solution required