in reply to Re: extracting only those keys with uniq values in array list
in thread extracting only those keys with uniq values in array list

I agree with you. I edited the question so hopefully it makes more sense. Thanks
  • Comment on Re^2: extracting only those keys with uniq values in array list

Replies are listed 'Best First'.
Re^3: extracting only those keys with uniq values in array list
by BillKSmith (Monsignor) on Apr 20, 2021 at 15:11 UTC
    Thanks for the clarification. Build the hash exactly as you show. Process the keys with grep
    use strict; use warnings; my %r_name = ( a => [ 1, 2 ], b => [ 3, 3 ], c => [ 1, 6 ], ); my @result = grep {$r_name{$_}[0] eq $r_name{$_}[1]} keys %r_name; print @result, "\n";

    Result

    b

    Note for next time: It is considered impolite to edit your post in a way that invalidates existing replies. Leave the existing text. Add a clearly marked UPDATE section.

    Bill
Re^3: extracting only those keys with uniq values in array list
by AnomalousMonk (Archbishop) on Apr 20, 2021 at 21:34 UTC