DSA Tracker

Medium

Word Break

A medium Dynamic Programming problem included in Love Babbar 450, Striver A2Z. Below: the roles whose interviews prioritise this topic, and how to practise it.

Topic
Dynamic Programming
Sheets
2
Core for
9 roles
Platform
LeetCode

The problem

Given a string and a dictionary of words, determine if the string can be segmented into a space-separated sequence of one or more dictionary words. The same dictionary word can be reused multiple times.

Example 1

Input
s = "leetcode", wordDict = ["leet","code"]
Output
true
Why
"leetcode" can be segmented as "leet code".

Example 2

Input
s = "applepenapple", wordDict = ["apple","pen"]
Output
true
Why
"applepenapple" can be segmented as "apple pen apple".

Example 3

Input
s = "catsandog", wordDict = ["cats","dog","sand","and","cat"]
Output
false
Why
There is no way to segment "catsandog" using the given dictionary.

Constraints

  • 1 <= s.length <= 300
  • 1 <= wordDict.length <= 1000
  • 1 <= wordDict[i].length <= 20
  • s and wordDict[i] consist of lowercase English letters

How to think about it

Updated 2026-09-09

A prefix is valid if and only if it ends with a dictionary word that immediately follows another valid prefix. Instead of searching forward through every combination of words, mark each index as reachable and look back only at word-length intervals to check connectivity.

Approaches, worst first

  1. Recursive prefix matching

    time O(2^n) · space O(n)

    From the start of the string, find all dictionary words that match the prefix and recurse on the remainder. Without memoization, repeating failed suffixes causes combinatorial explosion on inputs like 'aaaaab' with words ['a', 'aa', 'aaa'].

  2. Boolean reachability array

    time O(n^3) · space O(n + m * k)

    Define dp[i] as true if s[0..i-1] can be segmented. Set dp[0] = true. For each i from 1 to n, iterate j from 0 to i - 1; if dp[j] is true and s[j..i-1] exists in the word hash set, set dp[i] = true and break early.

  3. Length-bounded lookupWrite this one

    time O(n * L^2) · space O(n + m * k)

    Store words in a hash set and find the maximum word length L. For each index i, only scan cut points j between i - L and i - 1 where dp[j] is true. This caps substring extractions to the maximum dictionary word length.

Where people lose marks · 3
  • Looking up words in a raw array instead of a hash set. Array lookups turn every subsegment check into an O(wordDict.length) scan.
  • Failing to break early once dp[i] becomes true. Continuing the inner loop wastes string slicing and hashing operations for an already reachable prefix.
  • Forgetting to set dp[0] = true. If the empty prefix base case is false, no transition can ever trigger.

The theory behind it

Dynamic Programming — the ground this problem stands on. All Dynamic Programming problems

What Dynamic Programming is

Dynamic programming is a method for solving a complex problem by breaking it into overlapping subproblems, solving each subproblem only once, and remembering the answers in a lookup table. Instead of recalculating identical questions over and over, future steps look up previous answers directly. By assembling these saved pieces from the bottom up or storing them during recursion, a task that would take billions of steps finishes in a fraction of a second.

When to reach for it

Reach for dynamic programming when questions ask for the maximum profit, minimum cost, total number of distinct ways to achieve a goal, or whether a target can be formed. Signals include overlapping choices where making a choice now affects what choices remain later, but greedy picking fails to find the true global optimum. If drawing a recursive decision tree reveals the same subproblem states repeating across branches, dynamic programming is needed.

How the pattern works

Identify the state variables that uniquely describe a subproblem, such as an array index and remaining capacity. Write the base cases first, representing states whose answers are known without calculation. Next, write the recurrence relation that expresses the current state using previously solved states, taking the minimum, maximum, or sum among your options. Build the solution either top-down by caching recursive returns in a memo table, or bottom-up by filling an array in topological dependency order. When each state depends only on the previous row, compress storage down to a single array.

What each operation costs

OperationTime
fill dynamic programming table of n statesO(n)
solve two-dimensional grid of m by n statesO(m * n)
space-optimized state transition keeping one rowO(n)
What usually goes wrong with Dynamic Programming
  • Filling a bottom-up table in an order where the current cell needs values that have not been computed yet, reading uninitialized zeros.
  • Failing to initialize base cases properly, such as filling a minimization table with zeros instead of infinity, which traps the answer at zero.
  • Overwriting values in a 1D space-optimized knapsack array by scanning in the wrong direction, allowing the same item to be chosen multiple times.

Which roles need this problem

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

Secondary for 5 more roles, including Game Developer, Cryptography Engineer, Performance Engineer.

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 Dynamic Programming problems

Problem set and role mapping as of .