-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sum of All Numbers #1
Labels
Comments
the-vampiire
added
good first issue
Good for newcomers
beginner
beginner challenges
free code camp
challenges sourced from free code camp
Hacktoberfest
and removed
good first issue
Good for newcomers
labels
Oct 4, 2018
Done 👍 |
the-vampiire
added a commit
that referenced
this issue
Oct 5, 2018
1 Completes challenge and adds doctests
the-vampiire
added a commit
that referenced
this issue
Oct 5, 2018
solution to #1 - sum-of-all-numbers
dsargento
added a commit
to dsargento/hacktoberithms
that referenced
this issue
Oct 12, 2018
the-vampiire
pushed a commit
that referenced
this issue
Oct 15, 2018
Update sum-of-all-numbers-gettaplay.py
Can I pick this up? Noticed this is over a year old, are these still open? |
Closed
Can i take this up ? |
HarshitaDPoojary
added a commit
to HarshitaDPoojary/hacktoberithms
that referenced
this issue
Oct 13, 2019
the-vampiire
pushed a commit
that referenced
this issue
Oct 21, 2019
the-vampiire
pushed a commit
that referenced
this issue
Oct 21, 2019
the-vampiire
pushed a commit
that referenced
this issue
Oct 21, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Credit: Free Code Camp
Challenge
sum_all()
that takes a list of two numbers.notes
The lowest number will not always come first.
sample outputs
sum_all([1, 4])
should return 10.sum_all([4, 1])
should return 10.The text was updated successfully, but these errors were encountered: