문제

I have arrays like below and I can't find good solutions to make it works:

my @a = qw( A A B C C D D );

my @b = qw( A B C C D );

and as a result I would like to get: @a - @b = (A D)

Thanks for help!

도움이 되었습니까?

해결책

my %b;
++$b{$_} for @b;
grep { --$b{$_} < 0 } @a

다른 팁

You can find some code an explanation here: http://www.perlmonks.org/?node_id=2461

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top