freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/project-euler/problem-480-the-last-questi...

625 B

id challengeType title videoUrl localeTitle
5900f54c1000cf542c51005f 5 Problem 480: The Last Question

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler480();

Solution

// solution required