in reply to Trouble Chaining map function

print map { $t = $_ ; join "\t", $t, ( map {$data{$_,$t} ? 'X' : ' '} @days ) ,"\n" } @time;
poj

Replies are listed 'Best First'.
Re^2: Trouble Chaining map function
by jaypal (Beadle) on Jun 15, 2014 at 00:43 UTC

    Thanks Poj, this does help and answers my question. Appreciate your help.