Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Restricted Prime by kurosawa4434
def checkio(number):
zero = int(list(str(ord('F'))).pop())
one = int(list(str(ord('G'))).pop())
two = int(list(str(ord('H'))).pop())
i = two
while i < number:
total = zero
while total < number:
total += i
if total == number:
return False
i += one
return True
July 24, 2016