freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-61-cyclical-figurat...

55 lines
610 B
Markdown
Raw Normal View History

---
id: 5900f3a91000cf542c50febc
challengeType: 5
title: 'Problem 61: Cyclical figurate numbers'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler61(), 28684, "<code>euler61()</code> should return 28684.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler61() {
// Good luck!
return true;
}
euler61();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>