Skip to content

Commit d2328ac

Browse files
Update dynamic_programming/word_break.py
Co-authored-by: Christian Clauss <[email protected]>
1 parent fd76853 commit d2328ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: dynamic_programming/word_break.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
multiple times in the segmentation.
1111
1212
Implementation notes: Trie + Dynamic programming up -> down.
13-
The Trie keeps all wordDict words. It will be useful for scanning
13+
The Trie will be used to store the words. It will be useful for scanning
1414
available words for the current position in the string.
1515
1616
Leetcode:

0 commit comments

Comments
 (0)