freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-359-hilberts-new-ho...

55 lines
615 B
Markdown

---
id: 5900f4d31000cf542c50ffe6
challengeType: 5
title: 'Problem 359: Hilbert"s New Hotel'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler359(), 40632119, "<code>euler359()</code> should return 40632119.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler359() {
// Good luck!
return true;
}
euler359();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>