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