freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-194-coloured-config...

55 lines
619 B
Markdown

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