search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
1.5 KiB
1.5 KiB
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle |
|---|---|---|---|---|
| 5900f3c51000cf542c50fed7 | 5 | Problem 89: Roman numerals | 问题89:罗马数字 |
Description
Instructions
Tests
tests:
- text: <code>euler89()</code>应该返回743。
testString: assert.strictEqual(euler89(), 743);
Challenge Seed
function euler89() {
// Good luck!
return true;
}
euler89();
Solution
// solution required
/section>