Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Funny addition solution in Uncategorized category for Funny Addition by capback250
__author__ = 'Sergey'
def checkio(data):
"""The sum of two integer elements"""
return sum([int(x) for x in data])
if __name__ == '__main__':
assert checkio([5, 5]) == 10, 'First'
assert checkio([7, 1]) == 8, 'Second'
print('All ok')
Aug. 2, 2015