* fix: Chinese test suite Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working. * fix: ran script, updated testStrings and solutions
1016 B
1016 B
id, challengeType, title, videoUrl, localeTitle
id | challengeType | title | videoUrl | localeTitle |
---|---|---|---|---|
5900f4411000cf542c50ff54 | 5 | Problem 213: Flea Circus | 问题213:跳蚤马戏团 |
Description
在响铃50次后,预计的未占用方格数量是多少?将您的答案四舍五入到小数点后六位。
Instructions
Tests
tests:
- text: <code>euler213()</code>应返回330.721154。
testString: assert.strictEqual(euler213(), 330.721154);
Challenge Seed
function euler213() {
// Good luck!
return true;
}
euler213();
Solution
// solution required