Ad

Test if an integer is odd or even, but do it as inefficiently or kooky as you can

Bonus points for skirting the execution time limit without waits or unnecessary loops

def oddEven(n):
    return not str(n)[-1] in "02468"