freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-315-digital-root-cl...

55 lines
615 B
Markdown

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