π1. Split array in three equal sum subarrays π§
π‘ Problem Description:
sum(arr[0..i]) = sum(arr[i+1..j]) = sum(arr[j+1..n-1])π Example Walkthrough:
arr[] = [1, 3, 4, 0, 4]truearr[] = [2, 3, 4]falseConstraints:
π― My Approach:
Step-by-Step:
π Time and Auxiliary Space Complexity
π Solution Code
Code (Cpp)
Code (Java)
Code (Python)
π― Contribution and Support:
πVisitor Count
Last updated