Files
test-small-llms/libs/functions.py
Lennart J. Kurzweg (Nx2) a578dd26a0 mega commit
2024-08-20 20:47:17 +02:00

5 lines
186 B
Python

def nxhash(text:str) -> str: # @BenVida StackOverflow
hash=0
for ch in text:
hash = ( hash*281 ^ ord(ch)*997) & 0xFFFFFFFF
return str(hex(hash)[2:].upper().zfill(8))