Pregunta

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!

¿Fue útil?

Solución

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

Otros consejos

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top