Word break problem: Difference between revisions

Content added Content deleted
m (→‎{{header|Tailspin}}: Clearer comment)
Line 2,055: Line 2,055:


=={{header|Tailspin}}==
=={{header|Tailspin}}==
Does a depth-first search (we could easily stop looking after one is found, just add a condition to do nothing if a done-flag is set)
Does a depth-first search (after generating all possibilities on the current level). We could stop looking further after one is found, just add a condition to do nothing if a done-flag is set.
<lang tailspin>
<lang tailspin>
templates wordBreaks&{dict:}
templates wordBreaks&{dict:}