Skip to content

Commit 4d13e2a

Browse files
committed
resolve line issue
1 parent 9b859d0 commit 4d13e2a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

word-break/daiyongg-kim.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
2-
3-
41
""" Failed Attempt
52
class Solution:
63
def wordBreak(self, s: str, wordDict: List[str]) -> bool:
@@ -11,4 +8,6 @@ def wordBreak(self, s: str, wordDict: List[str]) -> bool:
118
else:
129
return False
1310
return len(s) == 0
14-
"""
11+
"""
12+
class Solution:
13+
def wordBreak(self, s: str, wordDict: List[str]) -> bool:

0 commit comments

Comments
 (0)