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

55 lines
625 B
Markdown
Raw Normal View History

---
id: 5900f54c1000cf542c51005f
challengeType: 5
title: 'Problem 480: The Last Question'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler480(), turnthestarson, "<code>euler480()</code> should return turnthestarson.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler480() {
// Good luck!
return true;
}
euler480();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>