Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
NumberBase.c solution in Clear category for Number Base by trudnopodobny
def checkio(str_number: str, radix: int) -> int:
try:
return int(str_number, radix)
except ValueError:
return -1
Oct. 4, 2018