freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-272-modular-cubes-p...

55 lines
639 B
Markdown
Raw Normal View History

---
id: 5900f47d1000cf542c50ff8f
challengeType: 5
title: 'Problem 272: Modular Cubes, part 2'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler272(), 8495585919506151000, "<code>euler272()</code> should return 8495585919506151000.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler272() {
// Good luck!
return true;
}
euler272();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>