Help for this page

Select Code to Download


  1. or download this
    findCommon ([1, 2, 2], [2, 2, 3]);
    
  2. or download this
    sub findCommon {
        my @lists = @_;
    ...
        
        return @common;
    }