in reply to Re: Sorting Unique File Entries
in thread Sorting Unique File Entries
I wonder if there's a cleaner way to write the mapped expression.use strict; foreach my $d (sort keys %{{ map( ($_ => 1), <DATA>) }} ) { print $d; } __DATA__ a B a B dd
|
|---|