freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-236-luxury-hampers....

55 lines
610 B
Markdown

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