Decode a base64 encoded string back to its original UTF-8 text, implementing the algorithm manually.
Constraints
Example
>>> decode_base64('SGVsbG8=')
'Hello'
>>> decode_base64('V29ybGQ=')
'World'
>>> decode_base64('')
''
>>> decode_base64('SGVsbG8sIFdvcmxkIQ==')
'Hello, World!'
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints