Given a string representing a matrix of numbers, return the rows and columns of that matrix.
So given a string with embedded newlines like:
9 8 7
5 3 2
6 6 7
representing this matrix:
1 2 3
|---------
1 | 9 8 7
2 | 5 3 2
3 | 6 6 7
your code should be able to spit out:
The rows for our example matrix:
And its columns:
To complete this exercise, you need to create the data type Matrix
,
with Eq
and Show
instances, and implement the following functions:
cols
column
flatten
fromList
fromString
reshape
row
rows
shape
transpose
You will find a dummy data declaration and type signatures already in place, but it is up to you to define the functions and create a meaningful data type, newtype or type synonym.
No validation of input is required. Let it fail if the matrix is not rectangular, invalid chars are encountered, etc.
shape is (rows, cols)
Sign up to Exercism to learn and master Haskell with 107 exercises, and real human mentoring, all for free.