3 lines
46 B
Python
3 lines
46 B
Python
|
def list2int(x):
|
||
|
return list(map(int, x))
|