You are viewing a single comment's thread. Return to all comments →
def is_smart_number(num):
val = int(math.sqrt(num)) if **num == int(math.pow(val , 2))**: return True return False
Seems like cookies are disabled on this browser, please enable them to open this website
Smart Number 2
You are viewing a single comment's thread. Return to all comments →
def is_smart_number(num):