Ad
Numbers
Data Types
Algorithms
Logic
Numbers
Data Types
Algorithms
Logic

Given a positive number N, you have to return if N is odd.

Example:
-> N = 3, return "True"
-> N = 42, return "False"

Good Luck !

def isOdd(n) :
    return "False" if n % 2 == 0 else "True"