- or download this
#!/usr/bin/perl -w
use strict;
...
}
print "\n";
}
- or download this
a => 1:b => 2:c => 3:
a => 1:b => 2:c => 3:
...
a => 1:b => 2:c => 3:
a => 2:b => 1:c => 3:
- or download this
my %seen = map{join(":", values %{$_}), $_} @array;
- or download this
my %seen = map{join(":", keys %{$_}), $_} @array;