freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-472-comfortable-dis...

619 B

id challengeType title videoUrl localeTitle
5900f5451000cf542c510057 5 Problem 472: Comfortable Distance II

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler472();

Solution

// solution required