Re: [Tutor] Bounded Linear Search

2011-10-16 Thread toganm
Peter Otten wrote: > To verify that the algorithm is correct now you could walk through > increasingly more complex sample data, which may be possible in this case, > but rarely ever for an entire script. Instead the common approach is to > pick a few samples along with the expected outcomes, feed

[Tutor] Bounded Linear Search

2011-10-16 Thread toganm
Hi, I am trying to learn programming and python and one of the books I use has an exercise for "Bounded Linear Search algorithm" under the heading in Accumulating Unique Values at I have coded the