Hi, I would like to create a matrix 9x9 where the elements are list (array). (like a cube)
These lists will decrease during processing and will normally contain one element, so to know if a list is definitely treated I need a flag. So 2 solutions seems to be good, but which one do you think will be easier to use : - an array of array of array with as flag a special value at the end of the last array - an array of array of hash with one key for the list of value and one key for the flag In the 2 solutions, I'm not sure to know how to access the lists I have to modify ! Could you help me please Thanks Gilles