MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / main

Method main

Programs/kadane.java:7–12  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

5class 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 {

Callers

nothing calls this directly

Calls 1

maxSubArrayMethod · 0.95

Tested by

no test coverage detected