Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
n,i,t picking solution in Clear category for Numbers Factory by veky
def checkio(n, t=''):
for i in range(9, 1, -1):
while not n%i:
n, t = n//i, str(i)+t
return n==1 and int(t)
Jan. 1, 2019
Comments: