Created
November 24, 2016 05:25
-
-
Save ishiy1993/926be63c872f764afbc5e1d16a70b045 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
main = do | |
ds <- lines <$> getContents | |
print $ map solve ds | |
solve :: String -> (String,String) | |
solve str = (key, value) | |
where | |
key = takeWhile (/=':') str | |
value = tail $ dropWhile (/=':') str | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment