--- id: 5900f4031000cf542c50ff15 challengeType: 5 title: 'Problem 150: Searching a triangular array for a sub-triangle having minimum-sum' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler150(), -271248680, "euler150() should return -271248680.");' ```
## Challenge Seed
```js function euler150() { // Good luck! return true; } euler150(); ```
## Solution
```js // solution required ```