* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
817 B
817 B
id, challengeType, title
id | challengeType | title |
---|---|---|
5900f4651000cf542c50ff77 | 5 | Problem 248: Numbers for which Euler’s totient function equals 13! |
Description
Instructions
Tests
tests:
- text: <code>euler248()</code> should return 23507044290.
testString: assert.strictEqual(euler248(), 23507044290, '<code>euler248()</code> should return 23507044290.');
Challenge Seed
function euler248() {
// Good luck!
return true;
}
euler248();
Solution
// solution required