Last active
September 16, 2019 11:59
-
-
Save slikts/57b3b1cb8b469aa28fd75f3fbf9c78ea to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const reverse = xs => [...xs].reverse() | |
const times = (length, f) => Array.from({ | |
length | |
}, f) | |
const flat = xs => xs.reduce((a, b) => a.concat(b), []) | |
const sum = ns => ns.reduce((a, b) => a + b) | |
const findPositiveIndex = ns => ns.findIndex(n => n > 0) | |
const trimNegative = ns => ns.slice(findPositiveIndex(ns), ns.length - findPositiveIndex(reverse(ns))) | |
const getSegments = ns => flat(trimNegative(ns).map((n, i, tns) => { | |
if (tns.length === 1) { | |
return [tns] | |
} | |
const isLast = i === tns.length - 1 | |
if (n <= 0 || isLast) { | |
return null | |
} | |
return times(tns.length - i - 1, (_, j) => { | |
const lastIndex = tns.length - j | |
const current = tns[lastIndex - 1] | |
const last = tns[lastIndex] | |
if (current <= 0 || last > 0) { | |
return null | |
} | |
return tns.slice(i, lastIndex) | |
}) | |
})).filter(x => x !== null) | |
const maxSubArray = ns => Math.max(...getSegments(ns).map(sum)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://leetcode.com/problems/maximum-subarray/