DSA Tracker

Medium

Sum Root to Leaf Numbers

A medium Binary Trees problem included in Striver A2Z. Below: the roles whose interviews prioritise this topic, and how to practise it.

Topic
Binary Trees
Sheets
1
Core for
4 roles
Platform
LeetCode

The problem

Given the root of a binary tree where each node contains a single digit from 0 to 9, return the total sum of all root-to-leaf numbers. Each root-to-leaf path represents a number formed by concatenating the digits.

Example 1

Input
[1,2,3]
Output
25
Why
Root-to-leaf paths: 1->2 represents 12, and 1->3 represents 13. Sum = 12 + 13 = 25.

Example 2

Input
[4,9,0,5,1,null,null,null,null,null,8]
Output
1026
Why
Paths: 4->9->5=495, 4->9->1=491, 4->0=40. Sum = 495 + 491 + 40 = 1026.

Example 3

Input
[0]
Output
0
Why
A single node with value 0 represents the number 0.

Constraints

  • The number of nodes is in the range [1, 1000].
  • 0 <= Node.val <= 9

How to think about it

Updated 2026-09-09

Appending a decimal digit to a number shifts earlier digits one place to the left, which is `currentNumber * 10 + node.val`. Carry this running integer down each path. When landing on a leaf, return the assembled integer; for internal nodes, sum the totals returned by both child branches.

Approaches, worst first

  1. Path string accumulation

    time O(n * h) · space O(h)

    Accumulate digit characters into strings during DFS. When a leaf is reached, parse the string into an integer and add to a running total. Incurs string allocation and parsing overhead at each step.

  2. Arithmetic DFS accumulatorWrite this one

    time O(n) · space O(h)

    Pass running integer `val = val * 10 + node.val` down recursive calls. If the node is a leaf, return `val`. Otherwise return `dfs(node.left, val) + dfs(node.right, val)`. Avoids all heap allocations and strings.

Where people lose marks · 3
  • Adding the running value at non-leaf nodes causes intermediate path prefixes to be counted in the total sum.
  • Missing the single-node tree case where root is itself a leaf; it must return its own value directly.
  • In languages without arbitrary-precision integers, deep trees could cause 32-bit integer overflow; within problem constraints (depth <= 1000), keep calculations safe.

The theory behind it

Binary Trees — the ground this problem stands on. All Binary Trees problems

What Binary Trees is

A binary tree is a branching data structure that starts at a single top node called the root, like an upside-down family tree. Every node holds a piece of data and can branch out to at most two children below it, known as the left child and the right child. Because there is no ordering rule about which values go left or right, finding a specific item can require checking every single node in the entire tree.

When to reach for it

Reach for binary trees when problems present hierarchical data with left and right child pointers. Questions asking for tree height, maximum depth, path sums from root to leaf, diameter, lowest common ancestor, or checking whether two trees are mirror reflections of each other all signal binary tree traversals. Any problem asking to inspect or reconstruct a tree layer by layer or path by path belongs here.

How the pattern works

Think recursively by focusing on what a single node must do. If the current node is null, return the base answer immediately. Otherwise, ask the left child for its result, ask the right child for its result, and combine both answers with the current node value before returning up to the parent. For horizontal scans, use a queue to read nodes layer by layer, measuring the queue length at the start of each layer to group nodes by depth.

What each operation costs

OperationTime
traverse all nodes using recursion or queueO(n)
search for an arbitrary value in an unordered treeO(n)
call stack memory on balanced treeO(log n)
call stack memory on skewed treeO(n)
What usually goes wrong with Binary Trees
  • Dereferencing left or right child pointers without checking if the current node is null, throwing null pointer errors on empty trees or leaf nodes.
  • Defining a leaf node incorrectly by stopping when either child is null instead of checking that both left and right children are simultaneously null.
  • Computing tree diameter by taking left height plus right height inside a recursive helper without updating a global maximum across every visited node.

Which roles need this problem

Binary Trees is a core topic for these 4 roles — if you're targeting one of them, this problem is early in your path, not optional.

Secondary for 5 more roles, including Full-Stack Developer, Android Developer, iOS Developer.

Track this in your role's order

Pick your target role and all 370 problems — including this one — resequence to what that interview actually asks. Free.

Start free

More Binary Trees problems

Problem set and role mapping as of .