1.9 KiB
1.9 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f3ca1000cf542c50fedc | 5 | Problem 93: Arithmetic expressions | 302210 | Задача 93: Арифметические выражения |
Description
Instructions
Tests
tests:
- text: <code>euler93()</code> should return 1258.
testString: assert.strictEqual(euler93(), 1258);
Challenge Seed
function euler93() {
// Good luck!
return true;
}
euler93();
Solution
// solution required