Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion someAnotherAlgo/maxSumSubArray(kadane's algo).cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <bits/stdc++.h>
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<n;i++){
Expand Down