Skip to content

Commit ca7004d

Browse files
committed
final commit
1 parent 1a23da0 commit ca7004d

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

maths/special_numbers/a_very_big_sum.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,9 @@ def a_very_big_sum(arr: list[int]) -> int:
1212
total += i
1313
return total
1414

15+
1516
if __name__ == "__main__":
1617
# Example usage
1718
arr = [2, 4, 6, 2, 4, 6, 3]
1819
result = a_very_big_sum(arr)
1920
print(f"Sum of {arr} is {result}")
20-
<<<<<<< HEAD
21-
22-
23-
=======
24-
>>>>>>> 7a0f65306d224f3917a3caf23997f850c21cbb6a

0 commit comments

Comments
 (0)