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