(String[] args)
| 5 | class Kadane |
| 6 | { |
| 7 | public static void main (String[] args) |
| 8 | { |
| 9 | int [] a = {10,13,11,22,34,50,20,80}; |
| 10 | System.out.println("Sub array with maximum sum is " +maxSubArray(a)); |
| 11 | |
| 12 | } |
| 13 | |
| 14 | static int maxSubArray(int a[]) |
| 15 | { |
nothing calls this directly
no test coverage detected