# Over-explaining a bit:
def magic(numList): # [1,2,3]
s = map(str, numList) # ['1','2','3']
s = ''.join(s) # '123'
s = int(s) # 123
return s
# How I'd probably write it:
def magic(numList):
s = ''.join(str, numList'.join(map(str, numList))
return int(s)
# As a one-liner
num = int(''.join(map(str,numList)))
# Functionally:
num s = reduce(lambda x,y: x+str(y), lnumList, '')
num = int(s)
# Cleverly, using Using some oft-forgotten built-ins:
num s = filter(str.isdigit, repr(numList))
num = int(s)
|
5 | added 31 characters in body | ||
|
|
||||
|
4 | deleted 126 characters in body | ||
|
||||
|
3 | added 243 characters in body | ||
|
# Explicitly Over-explaining a bit: |
||||
|
2 | made it more obviouser. | ||
|
1 |
|
||
