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

55 lines
639 B
Markdown
Raw Normal View History

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