From dd8cf707ccf4d390a7e3d0765fa347ff3d216100 Mon Sep 17 00:00:00 2001 From: Azadpurbey <42891872+Azadpurbey@users.noreply.github.com> Date: Fri, 16 Oct 2020 18:26:42 +0530 Subject: [PATCH] Update maxSumSubArray(kadane's algo).cpp --- someAnotherAlgo/maxSumSubArray(kadane's algo).cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/someAnotherAlgo/maxSumSubArray(kadane's algo).cpp b/someAnotherAlgo/maxSumSubArray(kadane's algo).cpp index d6256a4..a820f9c 100644 --- a/someAnotherAlgo/maxSumSubArray(kadane's algo).cpp +++ b/someAnotherAlgo/maxSumSubArray(kadane's algo).cpp @@ -1,6 +1,6 @@ #include using namespace std; - +//this is a way to comment anything int max_sum_array(int* ar,int n){ int Max=0,cur=0; for(int i=0;i