Skip to content

Instantly share code, notes, and snippets.

@woliveiras
Created April 15, 2018 21:51
Show Gist options
  • Save woliveiras/9df3802cdf9196305d2de41c23ff068d to your computer and use it in GitHub Desktop.
Save woliveiras/9df3802cdf9196305d2de41c23ff068d to your computer and use it in GitHub Desktop.
def my_structured_sum (numbers):
total = 0
for number in numbers:
total += number
return total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment