Added missing files and removed unnessesary ones
This commit is contained in:
4
Python/pyton_test/task8.py
Normal file
4
Python/pyton_test/task8.py
Normal file
@ -0,0 +1,4 @@
|
||||
def sum_range(a: int, b: int, /) -> int:
|
||||
if a > b:
|
||||
a, b = b, a
|
||||
return sum(range(a, b))
|
Reference in New Issue
Block a user