freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-80-square-root-digital-expansion.md
Oliver Eyton-Williams ee1e8abd87
feat(curriculum): restore seed + solution to Chinese (#40683)
* feat(tools): add seed/solution restore script

* chore(curriculum): remove empty sections' markers

* chore(curriculum): add seed + solution to Chinese

* chore: remove old formatter

* fix: update getChallenges

parse translated challenges separately, without reference to the source

* chore(curriculum): add dashedName to English

* chore(curriculum): add dashedName to Chinese

* refactor: remove unused challenge property 'name'

* fix: relax dashedName requirement

* fix: stray tag

Remove stray `pre` tag from challenge file.

Signed-off-by: nhcarrigan <nhcarrigan@gmail.com>

Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
2021-01-12 19:31:00 -07:00

39 lines
819 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f3bc1000cf542c50fecf
title: 问题80平方根数字扩展
challengeType: 5
videoUrl: ''
dashedName: problem-80-square-root-digital-expansion
---
# --description--
众所周知如果自然数的平方根不是整数那么它是不合理的。这种平方根的十进制扩展是无限的没有任何重复模式。二的平方根是1.41421356237309504880 ...前一百个十进制数字的数字和是475.对于前一百个自然数,找到所有的前一百个十进制数字的数字总和的总和。不合理的平方根。
# --hints--
`euler80()`应返回40886。
```js
assert.strictEqual(euler80(), 40886);
```
# --seed--
## --seed-contents--
```js
function sqrtDigitalExpansion() {
return true;
}
sqrtDigitalExpansion();
```
# --solutions--
```js
// solution required
```