Files
freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-144-investigating-multiple-reflections-of-a-laser-beam.arabic.md

636 B

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f3fc1000cf542c50ff0f 5 Problem 144: Investigating multiple reflections of a laser beam

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler144();

Solution

// solution required