Python Forum
In linear time, find the maximum sum of all possible contiguous subarrays
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
In linear time, find the maximum sum of all possible contiguous subarrays
#12
A new version for python >= 3.8
from operator import add, sub
from itertools import accumulate, tee

def gribmax2(iterable):
    s, t = tee(accumulate(iterable, add, initial=0))
    return max(map(sub, s, accumulate(t, min)))
It seems to agree with Deanhystad's version on 100000 arrays of length 100 with values in the range(-1000, 1000).

It took me a while to reach this quintessence of a function. I hope it will become a must in interviews from now on!
Reply


Messages In This Thread
RE: In linear time, find the maximum sum of all possible contiguous subarrays - by Gribouillis - Oct-29-2021, 06:54 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  find the header location in a .bin file without reading the whole file at a time SANJIB 0 2,245 Mar-05-2021, 04:08 PM
Last Post: SANJIB
  Find frequencies of an audio file at a specific time via librosa jberesford123__ 0 2,361 Oct-21-2020, 01:18 PM
Last Post: jberesford123__
  Find data using a period of time in SQLITE3 SmukasPlays 2 2,212 Jul-30-2020, 02:02 PM
Last Post: SmukasPlays
  Find if time is between start and end time mikke3141 3 2,296 Jan-03-2020, 08:48 PM
Last Post: mikke3141
  Find Maximum Flow for graph with infinite capacities Dav 6 4,295 Apr-16-2019, 02:08 PM
Last Post: Dav

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020