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

616 B

id challengeType title videoUrl localeTitle
5900f4d91000cf542c50ffea 5 Problem 364: Comfortable distance

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler364();

Solution

// solution required