Skip to content

Instantly share code, notes, and snippets.

@nennneko5787
nennneko5787 / ice.py
Last active February 1, 2026 04:19
某ゲーム
def getEventCodeByUserIndex(i: int):
converted = i * 3 + 3054
return (
str(converted)
.replace("0", "A")
.replace("1", "R")
.replace("2", "V")
.replace("3", "O")
.replace("4", "W")
.replace("5", "K")