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.4 KiB
1.4 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f4801000cf542c50ff92 | 5 | false | Problem 275: Balanced Sculptures | 301925 |
Description
There are 964 balanced sculptures of order 10 and 360505 of order 15.How many balanced sculptures are there of order 18?
Instructions
Tests
tests:
- text: <code>euler275()</code> should return 15030564.
testString: assert.strictEqual(euler275(), 15030564);
Challenge Seed
function euler275() {
// Good luck!
return true;
}
euler275();
Solution
// solution required