Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Number Base by bkmz
def checkio(str_number: str, radix: int) -> int:
try:
out = int(str_number, radix)
except ValueError:
return -1
return out
Sept. 9, 2018
Comments: