139. Word Break
https://leetcode.com/problems/word-break/
Problem
Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, determine if s can be segmented into a space-separated sequence of one or more dictionary words.
Note:
The same word in the dictionary may be reused multiple times in the segmentation.
You may assume the dictionary does not contain duplicate words.
Example 1:
Example 2:
Example 3:
Solution
#dp
Last updated
Was this helpful?