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