1013. Partition Array Into Three Parts With Equal Sum
https://leetcode.com/problems/partition-array-into-three-parts-with-equal-sum
Description
Given an array of integers arr
, return true
if we can partition the array into three non-empty parts with equal sums.
Formally, we can partition the array if we can find indexes i + 1 < j
with (arr[0] + arr[1] + ... + arr[i] == arr[i + 1] + arr[i + 2] + ... + arr[j - 1] == arr[j] + arr[j + 1] + ... + arr[arr.length - 1])
Example 1:
Example 2:
Example 3:
Constraints:
3 <= arr.length <= 5 * 104
-104 <= arr[i] <= 104
ac
Last updated