in reply to Re^3: How to swap rows with columns?
in thread How to swap rows with columns?
Why not just do away with the local var completely:
@a = ( [1..3],['a'..'c'],['x'..'z']);; @a = map{ [ map{ shift @$_ } @a ] } 1 .. @{ $a[0] };; print pp @a;; ([1, "a", "x"], [2, "b", "y"], [3, "c", "z"])
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: How to swap rows with columns?
by ikegami (Patriarch) on Oct 10, 2007 at 05:48 UTC |