--- id: 5900f4941000cf542c50ffa7 challengeType: 5 title: 'Problem 296: Angular Bisector and Tangent' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler296(), 1137208419, "euler296() should return 1137208419.");' ```
## Challenge Seed
```js function euler296() { // Good luck! return true; } euler296(); ```
## Solution
```js // solution required ```