wordbreak1 [코딩 테스트] 리트코드139 -Word Break (Medium) in Python Given a string s and a dictionary of strings wordDict, return true if s can be segmented into a space-separated sequence of one or more dictionary words. Note that the same word in the dictionary may be reused multiple times in the segmentation 문자열 s와 문자열들의 집합 wordDict가 주어졌을 때, wordDict안의 단어로 s를 만들 수 있는 지 확인! 예시: Input: s = "leetcode", wordDict = ["leet","code"] Output: true Explanation: Return .. 2021. 6. 1. 이전 1 다음