Skip to content
Open
Prev Previous commit
Next Next commit
format fixed
  • Loading branch information
komalharshita committed Oct 21, 2025
commit 2666979c72e276b065ce20086dc0ef447150612f
8 changes: 1 addition & 7 deletions maths/special_numbers/a_very_big_sum.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
<<<<<<< HEAD
def a_very_big_sum(arr: list[int]) -> int:
=======
from typing import List


def a_very_big_sum(arr: List[int]) -> int:
>>>>>>> 2e5b8980304014f131c23d43a7a08e624c23de8b
"""
Return the sum of all integers in the input array.

Expand All @@ -25,3 +18,4 @@ def a_very_big_sum(arr: List[int]) -> int:
result = a_very_big_sum(arr)
print(f"Sum of {arr} is {result}")