- Notifications
You must be signed in to change notification settings - Fork 46.7k
/
Copy pathsol2.py
40 lines (33 loc) · 1.04 KB
/
sol2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
"""
Problem Statement:
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.
3
7 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.
"""
importos
defsolution() ->int:
"""
Finds the maximum total in a triangle as described by the problem statement
above.
>>> solution()
7273
"""
script_dir=os.path.dirname(os.path.realpath(__file__))
triangle_path=os.path.join(script_dir, "triangle.txt")
withopen(triangle_path) asin_file:
triangle= [[int(i) foriinline.split()] forlineinin_file]
whilelen(triangle) !=1:
last_row=triangle.pop()
curr_row=triangle[-1]
forjinrange(len(last_row) -1):
curr_row[j] +=max(last_row[j], last_row[j+1])
returntriangle[0][0]
if__name__=="__main__":
print(solution())