Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
sum(data) solution in Clear category for Funny Addition by nickgryg
def checkio(data):
return sum(data)
if __name__ == '__main__':
assert checkio([5, 5]) == 10, 'First'
assert checkio([7, 1]) == 8, 'Second'
print('All ok')
Dec. 15, 2018