MCPcopy Index your code
hub / github.com/careercup/ctci / main

Method main

java/Chapter 18/Question18_12/QuestionC.java:55–60  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

53 }
54
55 public static void main(String[] args) {
56 int[][] matrix = AssortedMethods.randomMatrix(5, 7, -100, 100);
57 int sum = maxSubMatrix(matrix);
58 AssortedMethods.printMatrix(matrix);
59 System.out.println(sum);
60 }
61
62}

Callers

nothing calls this directly

Calls 3

randomMatrixMethod · 0.95
maxSubMatrixMethod · 0.95
printMatrixMethod · 0.95

Tested by

no test coverage detected