Created
January 8, 2012 17:56
-
-
Save audreyt/1579130 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
mul_n_sum :: String -> Int | |
mul_n_sum str = result | |
where | |
result = sum value_of_lines | |
value_of_lines = [ field1 * field2 | [field1, field2] <- field_lines ] | |
field_lines = [ [read txt1, read txt2] | [txt1, txt2] <- txt_lines ] | |
txt_lines = [ words line | line <- lines str ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment