- or download this
use strict;
use warnings;
...
print "@$_\n" for @array;
print "\n";
- or download this
1 1 3
1 5 6
...
2 2 4
2 6 7
1 1 3
- or download this
use strict;
use warnings;
...
print "\n";
print "@$_\n" for @unique;
print "\n";
- or download this
1 1 3
1 5 6
...
2 2 4
2 6 7