Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for Funny Addition by Joachim99
def checkio(data):
"""The sum of two integer elements"""
suma=0
for x in data:
suma=suma+x
return suma
if __name__ == '__main__':
assert checkio([5, 5]) == 10, 'First'
assert checkio([7, 1]) == 8, 'Second'
print('All ok')
Nov. 28, 2018