Find the Dimensions [[1,2],[5,5],[10,3],[4,6],[7,0]]
Problem
Solution
Count the rows by identifying the number of horizontal entries or sub-lists within the matrix. There are 5 rows.
Count the columns by identifying the number of vertical entries or elements within each sub-list. There are 2 columns.
State the dimensions using the standard notation
m×n wherem is the number of rows andn is the number of columns.
Final Answer
Want more problems? Check here!