Displaying 1 result from an estimated 1 matches for "12x31".
Did you mean:
1231
2008 Jul 24
1
ruby issue : mixing Hash and Array
...nal array ( 12 months 0-11 x 31 days
0-31) , with all values set to 0 and being able to
set the status of a specific date to 1 , (creating the hash for the
year if it''s not already existing)
ex : date 2008, November 8
will create a hash with key ''2008'' and an array (12x31) where
h[''2008''][10][7] = 1
ex : date 2008, November 15
will modify the array (12x31) at h[''2008''][10][7] = 1
( h[''2008''] already exist)
date 2009, December 24
will create a hash with key ''2008'' and an array (12x31...