99 questions/Solutions/2: Difference between revisions

From HaskellWiki
No edit summary
No edit summary
Line 14: Line 14:


myButLast'''' = head . tail . reverse
myButLast'''' = head . tail . reverse
myButLast''''' = head . drop 1 . reverse
</haskell>
</haskell>

Revision as of 18:53, 31 May 2012

(*) Find the last but one element of a list.

myButLast :: [a] -> a
myButLast = last . init

myButLast' x = reverse x !! 1

myButLast'' [x,_]  = x
myButLast'' (_:xs) = myButLast'' xs

myButLast''' (x:(_:[])) = x
myButLast''' (_:xs) = myButLast''' xs

myButLast'''' = head . tail . reverse