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 |
---|---|---|---|---|
5900f5481000cf542c51005b | 5 | false | Problem 476: Circle Packing II | 302153 |
Description
Instructions
Tests
tests:
- text: <code>euler476()</code> should return 110242.87794.
testString: assert.strictEqual(euler476(), 110242.87794);
Challenge Seed
function euler476() {
// Good luck!
return true;
}
euler476();
Solution
// solution required