Code Optimizations
An example: Transpose for i in rows for j in cols b[i][j] =
a[j][i]However, it might be the case that we do not know the size
at compilation time, so we cannot statically declare this 2D
array.