Created
February 13, 2014 12:07
-
-
Save cojna/8973959 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
-- 以下の関数を実装して下さい | |
map' :: (a -> b) -> [a] -> [b] | |
map'' :: (a -> b) -> [a] -> [b] -- ただし1行で! | |
mapM_' :: (Monad m) => (a -> m ()) -> [a] -> m () | |
mapM' :: (Monad m) => (a -> m b) -> [a] -> m [b] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment