freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-314-the-mouse-on-th...

625 B

id challengeType title videoUrl localeTitle
5900f4a71000cf542c50ffb9 5 Problem 314: The Mouse on the Moon

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler314();

Solution

// solution required