did you fix this

  • Thread starter Thread starter Julian Tucker
  • Start date Start date
J

Julian Tucker

Hi

I was wondering if you managed to fix this problem?
I am having the same problem, and can't seem to find any information on it at all.

Thanks

Julian

EggHeadCafe - .NET Developer Portal of Choice
http://www.eggheadcafe.com
 
Yes, I fixed it. I accidentally wrote

if (solved || a < b)

when I meant to write

if (!solved || a<= b)


Silly me :-)
 
Back
Top