From: Daniel Martin Date: 2006-07-10T11:17:58+09:00 Subject: Re: [SOLUTION][QUIZ] Panagrams (#86) Simon Kr�ger writes: > (this is my second version, the other one is longer and uses a slightly > other algorithm (and is sometimes even faster) but i like this one) Huh. I must say that when I saw your program, it wasn't at all what I expected - namely, you are changing all 26 letters at once, and then recalculating. I had assumed you were doing one letter at a time, which I found to be much, much faster than doing all 26 at once. I'm going to have to look into NArray, clearly. In fact, I think I'll try converting my solution to use NArray.