freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-295-lenticular-hole...

55 lines
616 B
Markdown

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