* 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
1.2 KiB
1.2 KiB
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle |
|---|---|---|---|---|
| 5900f3d21000cf542c50fee5 | 5 | Problem 102: Triangle containment | 问题102:三角形遏制 |
Description
Instructions
Tests
tests:
- text: <code>euler102()</code>应该返回228。
testString: assert.strictEqual(euler102(), 228);
Challenge Seed
function euler102() {
// Good luck!
return true;
}
euler102();
Solution
// solution required