Help for this page

Select Code to Download


  1. or download this
    my @big = qw( a b c d e f g h i a );
    my @small = qw( f c d g );
    ...
    
    print("@wanted\n");
    # f c d g a b e h i a
    
  2. or download this
    my @big = qw( a b c d e f g h i a );
    my @small = qw( f c d g );
    ...
    
    print("@wanted\n");
    # f c d g a b e h i