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

Method main

java/Chapter 18/Question18_13/Question.java:111–119  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

109
110 // Test harness.
111 public static void main(String[] args) {
112 Question dict = new Question(AssortedMethods.getListOfWords());
113 Rectangle rect = dict.maxRectangle();
114 if (rect != null) {
115 rect.print();
116 } else {
117 System.out.println ("No rectangle exists");
118 }
119 }
120
121
122}

Callers

nothing calls this directly

Calls 3

getListOfWordsMethod · 0.95
maxRectangleMethod · 0.95
printMethod · 0.95

Tested by

no test coverage detected