Skip to content

Latest commit

 

History

History
24 lines (22 loc) · 791 Bytes

63. 单词拆分.md

File metadata and controls

24 lines (22 loc) · 791 Bytes

给你一个字符串 s 和一个字符串列表 wordDict 作为字典。请你判断是否可以利用字典中出现的单词拼接出 s 。

输入: s = "leetcode", wordDict = ["leet", "code"]
输出: true
解释: 返回 true 因为 "leetcode" 可以由 "leet" 和 "code" 拼接成。
class Solution:
    def wordBreak(self, s: str, wordDict: List[str]) -> bool:
        #dp[i]表示s[:i+1]是否可以用wordDict中的单词表示
        s = ' '+s
        n = len(s)
        dp = [False] *(n)
        dp[0] = True
        for i in range(1, n):
            for j in range(i+1, n+1):
                if dp[i-1] and s[i:j] in wordDict:
                    dp[j-1] = True
                    if dp[-1] == True:
                        return True
        return False