8 lines
No EOL
150 B
Python
8 lines
No EOL
150 B
Python
from hashlib import md5
|
|
|
|
|
|
def annotation_hash(handler, input):
|
|
return md5(input.encode()).hexdigest()
|
|
|
|
# def nmbr(handler, lst) -> int:
|
|
# leno |