Skip to content

Commit 157984b

Browse files
committed
1 parent f540c25 commit 157984b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sumRange.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# return the sum of all numbers from 1 to x. x will be a positive integer.
1+
# return the sum of all numbers from 1 to x. x will be a positive integer
22
def sumRange(x):
33
return x * (x + 1) / 2

0 commit comments

Comments
 (0)