freeCodeCamp/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-67-maximum-path-sum...

64 lines
1.3 KiB
Markdown
Raw Normal View History

---
id: 5900f3b01000cf542c50fec2
challengeType: 5
title: 'Problem 67: Maximum path sum II'
forumTopicId: 302179
---
## Description
<section id='description'>
By starting at the top of the triangle below and moving to adjacent numbers on the row below, the maximum total from top to bottom is 23.
37 4
2 4 6
8 5 9 3
That is, 3 + 7 + 4 + 9 = 23.
Find the maximum total from top to bottom in triangle.txt (right click and 'Save Link/Target As...'), a 15K text file containing a triangle with one-hundred rows.
NOTE: This is a much more difficult version of Problem 18. It is not possible to try every route to solve this problem, as there are 299 altogether! If you could check one trillion (1012) routes every second it would take over twenty billion years to check them all. There is an efficient algorithm to solve it. ;o)
</section>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler67()</code> should return 7273.
testString: assert.strictEqual(euler67(), 7273);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler67() {
// Good luck!
return true;
}
euler67();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>