freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-327-rooms-of-doom.a...

55 lines
621 B
Markdown
Raw Normal View History

---
id: 5900f4b31000cf542c50ffc6
challengeType: 5
title: 'Problem 327: Rooms of Doom'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler327(), 34315549139516, "<code>euler327()</code> should return 34315549139516.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler327() {
// Good luck!
return true;
}
euler327();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>