class Solution { public boolean wordBreak(String s, List<String> wordDict) { // 因為要大量查詢字串存不存在,所以轉成HashSet 會比較有效率 ...
確定! 回上一頁