From 7aa2aac21895001e611abe2c91fca6da7fec6c3b Mon Sep 17 00:00:00 2001 From: Ankit Raj <72190253+DjAnkitRajCode@users.noreply.github.com> Date: Sat, 2 Oct 2021 13:09:20 +0530 Subject: [PATCH] Update Kadane's Algorithm.cpp --- Kadane's Algorithm.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Kadane's Algorithm.cpp b/Kadane's Algorithm.cpp index 44dcca0..defeac0 100644 --- a/Kadane's Algorithm.cpp +++ b/Kadane's Algorithm.cpp @@ -12,7 +12,6 @@ int maxSubArraySum(int a[], int size) max_so_far = max(max_so_far, curr_max); } return max_so_far; - //it is importatnt we should use differnt method to reduce time complexity } int main()