Skip to content

Instantly share code, notes, and snippets.

@ksomemo
Created May 30, 2013 11:57
Show Gist options
  • Save ksomemo/5677348 to your computer and use it in GitHub Desktop.
Save ksomemo/5677348 to your computer and use it in GitHub Desktop.
99_questions No.2
myButLast :: [a] -> a
-- myButLast [] =
-- myButLast (x:y:[]) = x
myButLast [x,y] = x
myButLast (_:x:xs) = myButLast (x:xs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment