Word break problem: Difference between revisions

Content deleted Content added
Hout (talk | contribs)
m →‎{{header|Javascript}}: (Minor simplification by currying)
Hout (talk | contribs)
m →‎Functional Python: Minor simplification by currying
Line 779:
def go(s):
return [Node(s)([])] if s in wds else (
concatMap(lambda w: next(s, w))(wds)
)
 
def next(s, w):
return lambda w: parse(w, go(s[len(w):])) if s.startswith(w) else []
 
return lambda s: go(s)