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
1.2 KiB
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: 5900f4751000cf542c50ff87
title: 问题264三角中心
challengeType: 5
videoUrl: ''
dashedName: problem-264-triangle-centres
---
# --description--
考虑所有三角形格点上的所有顶点。原点O. Orthocentre在圆点H5,0处的圆环。有九个这样的三角形其周长≤50。按周长的升序列出并显示它们是
A-4,3B5,0C4-3A4,3B5,0C-4-3A-3,4 B5,0C3-4A3,4B5,0C-3-4A0,5B5,0 C0-5A1,8B8-1C-4-7A8,1B1-8C - 4,7A2,9B9-2C-6-7A9,2B2-9C-6,7
他们的周长总和四舍五入到小数点后四位是291.0089。
查找周长≤105的所有此类三角形。输入其周长的总和四舍五入到小数点后四位。
# --hints--
`euler264()`应该返回2816417.1055。
```js
assert.strictEqual(euler264(), 2816417.1055);
```
# --seed--
## --seed-contents--
```js
function euler264() {
return true;
}
euler264();
```
# --solutions--
```js
// solution required
```