mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 21:41:08 +00:00
bc8df6de31
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.2.2 → v0.3.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.2.2...v0.3.2) - [github.com/pre-commit/mirrors-mypy: v1.8.0 → v1.9.0](https://github.com/pre-commit/mirrors-mypy/compare/v1.8.0...v1.9.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
49 lines
1.2 KiB
Python
49 lines
1.2 KiB
Python
"""
|
|
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.
|
|
"""
|
|
|
|
import os
|
|
|
|
|
|
def solution():
|
|
"""
|
|
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 = os.path.join(script_dir, "triangle.txt")
|
|
|
|
with open(triangle) as f:
|
|
triangle = f.readlines()
|
|
|
|
a = []
|
|
for line in triangle:
|
|
numbers_from_line = []
|
|
for number in line.strip().split(" "):
|
|
numbers_from_line.append(int(number))
|
|
a.append(numbers_from_line)
|
|
|
|
for i in range(1, len(a)):
|
|
for j in range(len(a[i])):
|
|
number1 = a[i - 1][j] if j != len(a[i - 1]) else 0
|
|
number2 = a[i - 1][j - 1] if j > 0 else 0
|
|
a[i][j] += max(number1, number2)
|
|
return max(a[-1])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print(solution())
|