Bulk execution issue in word break problem : 139
class Solution:
    def wordBreak(self, s: str, wordDict: List[str]) -> bool:
        memo={}
        return self.wordBreak1(s, wordDict, memo)
    
    def wordBreak1(self, s: str, wordDict: List[str], memo={}) -> bool:
        if s == "":
            return True
        if s in memo:
            return memo[s]
        for word in wordDict:
            l = len(word)
            sp = s[:l]
            if sp == word:
                memo[s] = self.wordBreak1(s[l:], wordDict)
                if memo[s] == True:
                    return True 
            
        memo[s] = False
        return False

40/45 cases passed
failed for below case:

"applepie"
["pie","pear","apple","peach"]

When i execute this case alone my code is showing correct result, Can someone please look into this

Comments (1)