freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-358-cyclic-numbers....

55 lines
676 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: 5900f4d21000cf542c50ffe5
challengeType: 5
title: 'Problem 358: Cyclic numbers'
videoUrl: ''
localeTitle: 问题358循环数
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler358()</code>应返回3284144505。
testString: 'assert.strictEqual(euler358(), 3284144505, "<code>euler358()</code> should return 3284144505.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler358() {
// Good luck!
return true;
}
euler358();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>