3 lines
52 B
Python
3 lines
52 B
Python
def mutinator(l):
|
|
l.append(0)
|
|
return len(l)
|
def mutinator(l):
|
|
l.append(0)
|
|
return len(l)
|