Longest common suffix: Difference between revisions

Content added Content deleted
(→‎{{header|Haskell}}: added an initial draft in Haskell, pending improvement of the task specification)
Line 215: Line 215:


=={{header|Haskell}}==
=={{header|Haskell}}==
This task clearly needs a little more work to bring it up to the usual standard – its' rather underspecified and bereft of test samples – but one response, for the moment, might be something like:
This task clearly needs a little more work to bring it up to the usual standard – it's rather underspecified, and bereft of test samples – but one response, for the moment, might be something like:
<lang haskell>import Data.List (transpose)
<lang haskell>import Data.List (transpose)


Line 248: Line 248:
<pre>day
<pre>day
dag</pre>
dag</pre>



=={{header|Julia}}==
=={{header|Julia}}==