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 |
---|---|---|---|---|
5900f4311000cf542c50ff43 | 5 | false | Problem 195: Inscribed circles of triangles with one angle of 60 degrees | 301833 |
Description
Find T(1053779).
Instructions
Tests
tests:
- text: <code>euler195()</code> should return 75085391.
testString: assert.strictEqual(euler195(), 75085391);
Challenge Seed
function euler195() {
// Good luck!
return true;
}
euler195();
Solution
// solution required