2D Array Basics
Know
A 2D array is an array of arrays. The first index selects the row and the second the column, and rows need not all be the same length.
Apply
Use the outer length for the row count and each row’s own length for its column count.
Watch out
Assuming every row has the same length, which fails on a ragged array.
Study move
Declare a 2D array and state the expression giving the number of columns in a specific row.
