题目
Given a non-empty string s
and a dictionary wordDict
containing a list of non-empty words, add spaces in s
to construct a sentence where each word is a valid dictionary word. Return all such possible sentences.
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:
1 | Input: |
Example 2:
1 | Input: |
Example 3:
1 | Input: |
思路
DFS.
代码
1 | class Solution(object): |