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.3 KiB
1.3 KiB
id, challengeType, isHidden, title, forumTopicId
id | challengeType | isHidden | title | forumTopicId |
---|---|---|---|---|
5900f3d21000cf542c50fee5 | 5 | false | Problem 102: Triangle containment | 301726 |
Description
Instructions
Tests
tests:
- text: <code>euler102()</code> should return 228.
testString: assert.strictEqual(euler102(), 228);
Challenge Seed
function euler102() {
// Good luck!
return true;
}
euler102();
Solution
// solution required