greyireland / algorithm-pattern

算法模板,最科学的刷题方式,最快速的刷题路径,你值得拥有~
MIT License
15.21k stars 2.58k forks source link

Fix(dp): fix wordBreak solution in dp #15

Closed FogDong closed 4 years ago

FogDong commented 4 years ago

源解法在遇到输入

"bb"
["a","b","bbb","bbbb"]

时,会输出错误结果

修正后 LeetCode 双 100

执行结果:
通过
显示详情
执行用时:
0 ms
, 在所有 Go 提交中击败了
100.00%
的用户
内存消耗:
2.2 MB
, 在所有 Go 提交中击败了
100.00%
的用户
whalecold commented 4 years ago

tql