Can you remove an element from a multidimensal array?

A 2d array is a data structure that has the same number of elements in every row, so it’s not meaningful to “remove an element” — the result would no longer be an array,.

a[2,1] = 12345
7 Likes