in reply to Pattern matching

Posting code might help us to find the problem, BUT, why are you using lists? If you are checking to see if names from a are in b and if they are not identically ordered, wouldn't hashes be a better data structure? It sounds as though if you used hashes you could iterate over one, say, a's keys and see if they are in b.

HTH, --traveler

Replies are listed 'Best First'.
Re: Re: Pattern matching
by Anonymous Monk on Aug 14, 2001 at 20:55 UTC
    An example of the input and the desired output would be help also.