freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-338-cutting-rectang...

55 lines
626 B
Markdown

---
id: 5900f4be1000cf542c50ffd1
challengeType: 5
title: 'Problem 338: Cutting Rectangular Grid Paper'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler338(), 15614292, "<code>euler338()</code> should return 15614292.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler338() {
// Good luck!
return true;
}
euler338();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>