Thursday, March 28, 2024 19:13

Posts Tagged ‘multidimensional arrays’

Arrays

Friday, April 20th, 2018

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

Test your knowledge! – Arrays

Friday, April 7th, 2017
Read more

Multidimensional arrays

Wednesday, April 5th, 2017

In 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


Follow the white rabbit