Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Straightforward solution in Clear category for The Good Radix by veky
def checkio(number):
for base in range(2,37):
try:
if not int(number, base)%(base - 1):
return base
except ValueError:
pass
return 0
#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
assert checkio("18") == 10, "Simple decimal"
assert checkio("1010101011") == 2, "Any number is divisible by 1"
assert checkio("222") == 3, "3rd test"
assert checkio("A23B") == 14, "It's not a hex"
print('Local tests done')
Aug. 26, 2013
Comments: