freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-150-searching-a-tri...

55 lines
666 B
Markdown

---
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
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler150(), -271248680, "<code>euler150()</code> should return -271248680.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler150() {
// Good luck!
return true;
}
euler150();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>