Kadane's Algorithm | Arrays | MEDIUM

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ธ.ค. 2024

ความคิดเห็น • 3

  • @galepraveen
    @galepraveen  24 วันที่ผ่านมา +1

    int maxSubarraySum(vector &arr) {
    int n = arr.size();
    int maxSum = INT_MIN, currSum = 0;
    for(int i = 0; i < n; ++i){
    currSum += arr[i];
    maxSum = max(maxSum, currSum);
    if(currSum < 0) currSum = 0;
    }
    return maxSum;
    }

  • @Angopoonam
    @Angopoonam 21 วันที่ผ่านมา

    Understood the algorithm really well Sir, it's locked in my brain forever, I was able to write the code and dry run by myself just by listening to your example explanation, Thanks...please continue teaching, more success to come🤩🥳

    • @galepraveen
      @galepraveen  21 วันที่ผ่านมา +1

      It made my day that I was able to help 😍