Skip to content

Instantly share code, notes, and snippets.

@maticzav
Created January 23, 2017 10:44
Show Gist options
  • Save maticzav/8a03e063bfcd1f548459aa61bb23e5af to your computer and use it in GitHub Desktop.
Save maticzav/8a03e063bfcd1f548459aa61bb23e5af to your computer and use it in GitHub Desktop.
Elm - get one before last in list
getOneBeforeLast : List a -> Maybe a
getOneBeforeLast list =
case list of
[] -> Nothing
a :: _ :: [] -> Just a
_ :: a -> getOneBeforeLast a
-- getOneBeforeLast [1,2,3,4,5] == [4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment