Skip to content

Instantly share code, notes, and snippets.

@FerdinaKusumah
Created December 5, 2019 01:43
Show Gist options
  • Save FerdinaKusumah/c9ae996f95668f3ff2dff5be4172cfc2 to your computer and use it in GitHub Desktop.
Save FerdinaKusumah/c9ae996f95668f3ff2dff5be4172cfc2 to your computer and use it in GitHub Desktop.
Simple Unit test 2
def sum_values(nums: list) -> int:
total = 0
for i in nums:
total = total + i
return total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment