Search⌘ K
AI Features

Solution: Word Break

Explore a dynamic programming approach to determine if a string can be segmented into valid dictionary words. Learn to build and use a lookup table to optimize recursive checks, improving efficiency by avoiding redundant computations. Understand the time and space complexity of this method to apply it in coding interviews effectively.

Statement

Given a string, s, and a dictionary of strings, wordDict, check if s can be segmented into a space-separated sequence of one or more dictionary words. If yes, return TRUE; else, return FALSE.

Note: The same word in the dictionary may be used multiple times.

Constraints:

  • 11 \leq s.length 250\leq 250

  • 11 \leq wordDict.length 1000\leq 1000 ...