freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-238-infinite-string...

632 B

id challengeType title videoUrl localeTitle
5900f45b1000cf542c50ff6d 5 Problem 238: Infinite string tour

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler238();

Solution

// solution required