--- id: 5900f3fc1000cf542c50ff0e challengeType: 5 title: 'Problem 143: Investigating the Torricelli point of a triangle' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler143(), 30758397, "euler143() should return 30758397.");' ```
## Challenge Seed
```js function euler143() { // Good luck! return true; } euler143(); ```
## Solution
```js // solution required ```