Hoyant-Su
Update ShellOps dataset
afcfd4d
raw
history blame
165 Bytes
def parser_func(x):
if x > 0:
return x * 2
return -x
class Parser:
def __init__(self):
self.count = 0
def step(self):
self.count += 1
return self.count