freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-353-risky-moon.russ...

614 B

id challengeType title videoUrl localeTitle
5900f4cd1000cf542c50ffe0 5 Problem 353: Risky moon

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler353();

Solution

// solution required