Help for this page

Select Code to Download


  1. or download this
    # given @words and @exclude
    my %seen;
    ...
    @words = grep {
        (! /\W/) and (length() >= 4) and ($seen{$_}++ == 0)
    } @words;