freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-316-numbers-in-deci...

55 lines
645 B
Markdown

---
id: 5900f4a81000cf542c50ffbb
challengeType: 5
title: 'Problem 316: Numbers in decimal expansions'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler316(), 542934735751917760, "<code>euler316()</code> should return 542934735751917760.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler316() {
// Good luck!
return true;
}
euler316();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>