File tree Expand file tree Collapse file tree
exercises/practice/matrix/.docs Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Instructions
22
3- Given a string representing a matrix of numbers, return the rows and columns of
4- that matrix.
3+ Given a string representing a matrix of numbers, return the rows and columns of that matrix.
54
65So given a string with embedded newlines like:
76
@@ -23,10 +22,8 @@ representing this matrix:
2322
2423your code should be able to spit out:
2524
26- - A list of the rows, reading each row left-to-right while moving
27- top-to-bottom across the rows,
28- - A list of the columns, reading each column top-to-bottom while moving
29- from left-to-right.
25+ - A list of the rows, reading each row left-to-right while moving top-to-bottom across the rows,
26+ - A list of the columns, reading each column top-to-bottom while moving from left-to-right.
3027
3128The rows for our example matrix:
3229
You can’t perform that action at this time.
0 commit comments