Created
March 17, 2016 16:02
-
-
Save SilverRainZ/dd8590c77276b42f5096 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
data Matrix = Matrix {getMartix :: [[Int]]} | |
transpose (Matrix ([]:_)) = Matrix [] | |
transpose (Matrix xs) = Matrix $ map head xs : getMartix (transpose $ Matrix $ map tail xs) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment