A simple triangle challenge solution. For simplicity and brevity's sake, the solution was made in python3 but it also runs in python2
By starting at the top of the triangle below and moving to adjacent numbers on the row below, the objective is to find the largest sum of numbers
Simply run
python challenge/main.py
You can change the input triangle at the main.py file
You can run the tests with
python -m unittest tests.test
This code runs under MIT License