Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 462 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 462 Bytes

200.Path Sum II

Description

Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.

Example

For example:
Given the below binary tree and sum = 22,

              5
             / \
            4   8
           /   / \
          11  13  4
         /  \      \
        7    2      1

return
[
   [5,4,11,2],
   [5,8,4,5]
]

From

LeetCode