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.1 KiB
1.1 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f53a1000cf542c51004c | 5 | false | Problem 461: Almost Pi | 302136 |
Description
Instructions
Tests
tests:
- text: <code>euler461()</code> should return 159820276.
testString: assert.strictEqual(euler461(), 159820276);
Challenge Seed
function euler461() {
// Good luck!
return true;
}
euler461();
Solution
// solution required