Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Number Base by Tubis
def checkio(sn, radix):
try:
return int(sn, radix)
except:
return -1
Feb. 20, 2014
Comments: