Skip to content

Instantly share code, notes, and snippets.

@ExpandingShapes
Created October 26, 2020 11:05
Show Gist options
  • Save ExpandingShapes/b0984f24f5850a7ab4d82e7a6f70e950 to your computer and use it in GitHub Desktop.
Save ExpandingShapes/b0984f24f5850a7ab4d82e7a6f70e950 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use strict;
use warnings;
use Data::Dumper;
$, = " ";
sub GetUniqueSorted {
my (@arr) = @_;
my %uniqueHash = ();
@uniqueHash{@arr} = ();
return sort keys % uniqueHash;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment