120. TriangleMedium
Given a
trianglearray, return the minimum path sum from top to bottom.For each step, you may move to an adjacent number of the row below. More formally, if you are on index
ion the current row, you may move to either indexior indexi + 1on the next row.
- Problem
- Solutions