← Back to List
10939번: BASE32 디코딩 ↗
Solutions
Python 3
77 B | 77 chars
import base64 a=input() print(str(base64.b32decode(a.encode('utf-8')))[2:-1])