Skip to content

Instantly share code, notes, and snippets.

View DuckyShine004's full-sized avatar
🎯
Focusing

Gallon Zhou DuckyShine004

🎯
Focusing
View GitHub Profile
@DuckyShine004
DuckyShine004 / xorshift.py
Last active July 13, 2023 14:16 — forked from amano41/xorshift.py
Xorshift and xorshift+ implementation in Python
def xorshift128():
'''xorshift
https://ja.wikipedia.org/wiki/Xorshift
'''
x = 123456789
y = 362436069
z = 521288629
w = 88675123