1.1 KiB
1.1 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f42f1000cf542c50ff41 | 5 | Problem 193: Squarefree Numbers | 301831 | Задача 193: Квадратные числа |
Description
Сколько квадратных чисел там ниже 250?
Instructions
Tests
tests:
- text: <code>euler193()</code> should return 684465067343069.
testString: assert.strictEqual(euler193(), 684465067343069);
Challenge Seed
function euler193() {
// Good luck!
return true;
}
euler193();
Solution
// solution required