1.4 KiB
1.4 KiB
id, challengeType, videoUrl, title
id | challengeType | videoUrl | title |
---|---|---|---|
5900f3cf1000cf542c50fee1 | 5 | 问题98:Anagramic正方形 |
Description
Instructions
Tests
tests:
- text: <code>euler98()</code>应该返回18769。
testString: assert.strictEqual(euler98(), 18769);
Challenge Seed
function euler98() {
// Good luck!
return true;
}
euler98();
Solution
// solution required
/section>