--- id: 5900f4b91000cf542c50ffcb challengeType: 5 title: 'Problem 332: Spherical triangles' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler332(), 2717.751525, "euler332() should return 2717.751525.");' ```
## Challenge Seed
```js function euler332() { // Good luck! return true; } euler332(); ```
## Solution
```js // solution required ```