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

45 lines
737 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: 5900f4f11000cf542c510002
title: 问题388不同的线条
challengeType: 5
videoUrl: ''
dashedName: problem-388-distinct-lines
---
# --description--
考虑所有格点abc其中0≤abc≤N。
从原点O0,0,0开始所有线都被绘制到其他格点。设DN是不同的这种线的数量。
您被给予D1 000 000= 831909254469114121。
找到D1010。将前9位数字后跟最后9位数字作为答案。
# --hints--
`euler388()`应该返回831907372805130000。
```js
assert.strictEqual(euler388(), 831907372805130000);
```
# --seed--
## --seed-contents--
```js
function euler388() {
return true;
}
euler388();
```
# --solutions--
```js
// solution required
```