Skip to content

Create maximum_subsequence.py #7792

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

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions other/maximum_subsequence.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
from collections.abc import Sequence


def max_subsequence_sum(nums: Sequence[int]) -> int:
"""Return the maximum possible sum amongst all non - empty subsequences.

Raises:
ValueError: when nums is empty.

>>> max_subsequence_sum([1,2,3,4,-2])
10
>>> max_subsequence_sum([-2, -3, -1, -4, -6])
-1
"""
if not nums:
raise ValueError("Input sequence should not be empty")

ans = nums[0]
nums_len = len(nums)

for i in range(1, nums_len):
num = nums[i]
ans = max(ans, ans + num, num)

return ans


if __name__ == "__main__":
n = int(input("Enter number of elements : ").strip())
array = list(map(int, input("\nEnter the numbers : ").strip().split()))[:n]
print(max_subsequence_sum(array))