Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Beau Carnes <beaucarnes@gmail.com>
1.0 KiB
1.0 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f4771000cf542c50ff89 | 5 | false | Problem 266: Pseudo Square Root | 301915 |
Description
Let p be the product of the primes below 190. Find PSR(p) mod 1016.
Instructions
Tests
tests:
- text: <code>euler266()</code> should return 1096883702440585.
testString: assert.strictEqual(euler266(), 1096883702440585);
Challenge Seed
function euler266() {
// Good luck!
return true;
}
euler266();
Solution
// solution required