Add image
commited
commit
eb64fba0b926c3e240a5c3e951e7ffe4a854f783
... | ... | @@ -5,6 +5,10 @@ List of list (nested list) is currently not possible with the current list scrip |
5 | 5 | - *Y*: the index row of a 2D list |
6 | 6 | - *Columns*: the total columns of a 2D list |
7 | 7 | |
8 | In this image, *Columns* is equal to 4: |
|
9 | ||
10 | [[/uploads/2d-list.png]] |
|
11 | ||
8 | 12 | Two-dimensional list is mostly used in creating a game that involves a *board* or a *grid* such as Chess, Reversi, Checkers, Tetris, Battleship, 2048 and so on. |
9 | 13 | |
10 | 14 | In a technical term, 2D list is called as an array of arrays or also known as a matrix which can be represented as a table of columns and rows. |