We talked about arrays before, in an entire chapter. The arrays are collections of fixed number of elements of a given type (strings, integers, etc) where the elements preserve their initial order. Each element can be accessed through its numerical index, which starts at 0.… Read more
Posts Tagged ‘multidimensional arrays’
Arrays
Friday, April 20th, 2018Test your knowledge! – Arrays
Friday, April 7th, 2017Multidimensional arrays
Wednesday, April 5th, 2017In mathematics, one-dimensional arrays are also known as vectors. Some of you may still remember (riiight! 🙂 ) that multidimensional arrays are called matrices. In programming, we call multidimensional arrays any array with more than one dimension.
For instance, how would we represent the structure of a chess board programmatically?… Read more