Help for this page

Select Code to Download


  1. or download this
     use strict;
    use warnings;
    ...
    Before suggesting code for that, I'd like to hear from the
    OP whether this can really happen in "the real world" and
    if such a solution is even needed.
    
  2. or download this
    # make the @$all array the union of everything in
    # either @$all or @$accounts, excluding the acc 44443 record
    ...
    
    my %seen;
    @$all = grep{ $_->{acc} ne '44443' and !$seen{$_->{acc}}++ } @$all,@$a
    +ccounts;
    
  3. or download this
    use strict;
    use warnings;
    ...
      { acc => 54321, date => "1999-06-19", year => 2017 },
      { acc => 44443, date => "1980-03-05", year => 2019 },
    ]