Dynamic grid

Dynamic grid Structure for Rust. It's two dimensional data structure fast and easy to use with no ibligation to have the same number of rows and columns.

classic grid

0,0,0
0,0,0
0,0,0

It's forbidden to have the second row with four value

dynamic grid

0,0
0,0,0,0,0
0,0,0

It's ok with dynamic grid.