(from 2nd interview) Find the mistakes in a function. Was given a function that should be printing all the odd numbers from 1 to N. The function was using a `while(i <= N)` loop but was missing the `i++`. Also it was printing even numbers, but the function title was "printOdds".