← Back to List
10934번: SHA ↗
Solutions
Python 3
85 B | 85 chars
import hashlib m = hashlib.new('sha') m.update(input().encode()) print(m.hexdigest())