Possible Duplicate:
What's the most efficient way to check for duplicates in an array of data using Perl?
what is the best way to find the duplicate values in array without using hash ,
@A = ("foo","baz","bar","foo","baz","foo");
This is my array, how to pull only duplicate values, like:
foo baz
@arr1 = (
'2017554310',
'2078991086',
'2163824970',
'2405206346',
'2769562630',
'2769562630',
'3137026006',
'3232651356',
'3369962470',
'3865302266',
'4107452620',
'4232926280',
'5205689000',
'5613613000',
'6105668446',
'6187592436',
'6239350730',
'6239350730',
'7024698706',
'7024698706',
'7024698706',
'7024698706',
'7047088496',
'7136929460',
'7149705670',
'7178455806',
'7607491726',
'7757710940',
'8056423386',
'8325522340',
'8325522340',
'8437352856',
'8437352856',
'8437352856',
'9738570770'
);
sort), but if you don't care about efficiency,for my $i (1 .. $#A) { print $A[$i] if 1 == grep $_ eq $A[$i], @A[0 .. $i-1]; }should do the job just fine. – Ilmari Karonen Nov 2 '11 at 18:37