freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/project-euler/problem-460-an-ant-on-the-m...

700 B

id challengeType title videoUrl localeTitle
5900f5381000cf542c51004b 5 Problem 460: An ant on the move

Description

undefined

Instructions

Tests

tests:
  - text: <code>euler460()</code> deve retornar 18.420738199.
    testString: 'assert.strictEqual(euler460(), 18.420738199, "<code>euler460()</code> should return 18.420738199.");'

Challenge Seed

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

euler460();

Solution

// solution required