Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Numbers Factory by CyprianSzlachciak
def checkio(number):
#replace this for solution
cyfry = []
while number > 9:
jest = False
for i in range(9,1,-1):
if number%i==0:
jest = True
cyfry.append(i)
number=number/i
break
if jest is False:
return 0
cyfry.append(number)
wynik=""
for j in sorted(cyfry):
wynik+=str(j)
return int(wynik)
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert checkio(20) == 45, "1st example"
assert checkio(21) == 37, "2nd example"
assert checkio(17) == 0, "3rd example"
assert checkio(33) == 0, "4th example"
assert checkio(3125) == 55555, "5th example"
assert checkio(9973) == 0, "6th example"
Nov. 18, 2016