Skip to content

Instantly share code, notes, and snippets.

@M-Shinoda
M-Shinoda / total.py
Last active July 4, 2021 01:41
total.py
def func(params):
total = 0
for i in range(int(params['param'])+1):
total += i
return total
@M-Shinoda
M-Shinoda / pass_judg.py
Last active May 9, 2021 06:41
pass_judg.py
def func(params):
PASSWORD = 'ほげ ほげ/&\|=?'
return params['パスワード'] == PASSWORD