Problem · Tree
Root-to-Leaf Paths with a Target Sum
Problem statement
Given the root of a binary tree and an integer targetSum, return every root-to-leaf path whose node values add up to targetSum.
The problem statement continues
ProExamples
Example 1
root = [5,4,8,11,null,13,4,7,2,null,null,5,1]targetSum = 22return = [[5,4,11,2],[5,8,4,5]]Both listed root-to-leaf paths sum to 22, and the left path is visited first.
FastPrep Pro
Reported in 1 Amazon interview this weekUnlock this recently reported problem
FastPrep Pro gives you full access to interview problems reported within the last week.
- Full problem statement and constraints
- 2 more worked examples, explained
- Guided hints and editorial
- Run your code on real test cases
$8.25/month
$99 billed yearly — or $19 month-to-month. Cancel anytime.
Free plan — 2 of 2 free unlocks used this week