Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 303 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 303 Bytes

Good morning! Here's your coding interview problem for today.

This question was asked by Apple.

Given a binary tree, find a minimum path sum from root to a leaf.

For example, the minimum path in this tree is [10, 5, 1, -1], which has sum 15.

10 /
5 5 \
2 1 / -1