freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-202-laserbeam.arabi...

609 B

id challengeType title videoUrl localeTitle
5900f4371000cf542c50ff49 5 Problem 202: Laserbeam

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler202();

Solution

// solution required