freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-318-2011-nines.chin...

55 lines
608 B
Markdown
Raw Normal View History

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