Last active
December 10, 2015 14:48
-
-
Save honda0510/4450185 to your computer and use it in GitHub Desktop.
【Haskell】lastを自前で実装
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
last' :: [a] -> a | |
last' [] = error "list must be `length list > 0`" | |
last' [x] = x | |
last' (x:xs) = last' xs | |
last'' :: [a] -> a | |
last'' [] = error "list must be `length list > 0`" | |
last'' xs = xs !! ((length xs) - 1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment