in reply to Re: Binary search algorithm
in thread Binary search algorithm

That makes sense. It never occured to me to iterate through the array after performing the binary search on it. I didn't realize I was destroying it. I like your solution involving an anonymous array. Very neat. Thank you for your input.

Matt