1.2 KiB
1.2 KiB
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f3d21000cf542c50fee5 | 5 | 问题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
/section>