in reply to Re: Re: Code efficiency / algorithm
in thread Code efficiency / algorithm

Well, for each entry in datafile2, you consider all the elements in datafile1. So your algorithm takes at least Omega (N * M) time.

Abigail