class Solution: """ @param: s: A string @param: dict: A dictionary of words dict @return: A boolean """ def wordBreak(self, s, wordSet): if not s: return ...
確定! 回上一頁