Hofstra Student Killed During Home Invasion was Shot by Police
-
A 21-year-old Hofstra student was killed early Friday morning by a shot
fired by a Nassau County policeman. Andrea Rebello was being held at
gunpoint by ...
24 minutes ago
int[] A = new int[] {1, 2, 3, 20, 2, 5, 8, 20, 9, 8, 7, 6, 7, 8};
ReplyDeleteint last = 0;
int maxSum = 0;
int sumSoFar = 0;
for(int i=0; i < A.length; i++) {
if (A[i] < last) {
last = A[i];
sumSoFar = last;
continue;
}
sumSoFar += A[i];
maxSum = Math.max(sumSoFar, maxSum);
last = A[i];
}
System.out.println(maxSum);