freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-374-maximum-integer...

55 lines
631 B
Markdown
Raw Normal View History

---
id: 5900f4e51000cf542c50fff6
challengeType: 5
title: 'Problem 374: Maximum Integer Partition Product'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler374(), 334420941, "<code>euler374()</code> should return 334420941.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler374() {
// Good luck!
return true;
}
euler374();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>