Converting from a string to a number
问题 So, I am trying to write a program to decode 6-character base-64 numbers. Here is the problem statement: Return the 36-bit number represented as a base-64 number in reverse order by the 6-character string s where the order of the 64 numerals is: 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-+ i.e. decode('000000') → 0 decode('gR1iC9') → 9876543210 decode('++++++') → 68719476735 I would like to do this WITHOUT strings. The easiest way to do this would be to create the inverse