Skip to content

Instantly share code, notes, and snippets.

@oisdk
Created October 24, 2019 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oisdk/3259ba506e537b9e70d110d785191d92 to your computer and use it in GitHub Desktop.
Save oisdk/3259ba506e537b9e70d110d785191d92 to your computer and use it in GitHub Desktop.
init :: [a] -> [a]
init xs = foldr f b xs Nothing
where
b Nothing = error "init: empty list"
b _ = []
f x xs Nothing = xs (Just x)
f y xs (Just x) = x : xs (Just y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment