Help for this page
@students = ( { ... }, );
@uniq_students = ( { ... college => "Harvard", }, );
##Solution for one hash key my @unique = do { my %seen; grep { !$seen{$_->{name}}++ } @students};