Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Number Base by mkomarova
def checkio(str_number, radix):
try:
return int(str_number, radix)
except:
return -1
Nov. 9, 2016