- or download this
use strict;
use warnings;
...
}->( @arr );
print qq{@arr\n};
- or download this
1,1,0
2,0,1
3,0,0
4,1,1
1 1 0 2 0 1 3 0 0 4 1 1
- or download this
use strict;
use warnings;
...
}->( @arr );
print qq{@arr\n};
- or download this
1,1,0
2,0,1
...
4,1,1
5,7
1 1 0 2 0 1 3 0 0 4 1 1 5 7
- or download this
use strict;
use warnings;
...
local( $,, $\ ) = ( q{,}, qq{\n} );
print grep defined, map shift, 1 .. 3 while @_;
}->( @arr );