[[TableOfContents]] How can I find the union/difference/intersection of two arrays? === 기타 === ==== 비효율적이지만 간단한 방법 ==== 비용이 크지만 작은 리스트에서 활용 가능한 한 줄 코드. {{{#!perl my @isect = map { my $b = $_; grep { $_ eq $b } @a } @b; }}}