freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-419-look-and-say-se...

663 B

id challengeType title videoUrl localeTitle
5900f5101000cf542c510022 5 Problem 419: Look and say sequence

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler419(), 998567458, 1046245404, 43363922, "<code>euler419()</code> should return 998567458, 1046245404, 43363922.");'

Challenge Seed

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

euler419();

Solution

// solution required