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>
792 B
792 B
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f43a1000cf542c50ff4d | 5 | false | Problem 206: Concealed Square | 301847 |
Description
Instructions
Tests
tests:
- text: <code>euler206()</code> should return 1389019170.
testString: assert.strictEqual(euler206(), 1389019170);
Challenge Seed
function euler206() {
// Good luck!
return true;
}
euler206();
Solution
// solution required