freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-360-scary-sphere.ru...

56 lines
657 B
Markdown
Raw Normal View History

---
id: 5900f4d41000cf542c50ffe7
challengeType: 5
title: 'Problem 360: Scary Sphere'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler360(), 878825614395267100, "<code>euler360()</code> should return 878825614395267100.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler360() {
// Good luck!
return true;
}
euler360();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>