Your dumper output looked odd to me. Basically you have one row of what would be an Array of Array (AoA). That would have happened if say you initialized these two arrays with square brackets instead of paren's. I'm not sure if that is what you really wanted?

I demo that below and changed to a more usual initialization of a 1D array..

#!usr/bin/perl use strict; use warnings; use Data::Dumper; my @x = [100, 101]; #may not be what you want? print Dumper \@x; my @dead_list = (100, 101, 103, 200, 201, 202, 203, 210, 211, 212, 220, 221, 222, 230, 231, 232, 233, 240, 241, 242, 243, 1000, 1001, 1002, 1010, 1011, 1012, 1020, 1021, 1022, 1120, 1121, 1122, 1210, 1211, 1212); my @get_list = ( '100', '200', '210', '220', '230', '240', '1000', '1001', '1002', '1120', '1210',); sub remove_x99 { my ($deadlist_ref, $getlist_ref) = @_; my %lookup = map{$_=>1}@$getlist_ref; my @result = grep{!exists $lookup{$_}}@$deadlist_ref; return @result; } my @result = remove_x99 (\@dead_list, \@get_list); print "@result\n"; __END__ $VAR1 = [ [ 100, 101 ] ]; 101 103 201 202 203 211 212 221 222 231 232 233 241 242 243 1010 1011 +1012 1020 1021 1022 1121 1122 1211 1212 Note: in the sub if you wanted to modify dead_list: @$deadlist_ref = grep{!exists $lookup{$_}}@$deadlist_ref; would do that.

In reply to Re: Array lookup by Marshall
in thread Array lookup by bartrad

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.