Created
December 5, 2019 01:43
-
-
Save FerdinaKusumah/c9ae996f95668f3ff2dff5be4172cfc2 to your computer and use it in GitHub Desktop.
Simple Unit test 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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