top | item 8788106

(no title)

mapimopi | 11 years ago

Why not just

  if (i % 3 != 0 && i % 5 != 0)
this extra boolean variable out?

discuss

order

ivanche|11 years ago

I like to think it's matter of readability. "if (pureNumber)" vs. "if (i % 3 != 0 && i % 5 != 0)". Also, one extra variable vs. reversal of already mentioned condition. Yes, we're splitting hair here :)