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

Method main

java/Chapter 17/Question17_14/Question.java:103–112  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

101 }
102
103 public static void main(String[] args) {
104 dictionary = AssortedMethods.getTrieDictionary();
105 sentence = "As one of the top companies in the world, Google will surely attract the attention of computer gurus. This does not, however, mean the company is for everyone.";
106 sentence = clean(sentence);
107 System.out.println(sentence);
108 //Result v = parse(0, 0, new Hashtable<Integer, Result>());
109 //System.out.println(v.parsed);
110 int v = parseOptimized(0, 0, new Hashtable<Integer, Integer>());
111 System.out.println(v);
112 }
113
114}

Callers

nothing calls this directly

Calls 3

getTrieDictionaryMethod · 0.95
cleanMethod · 0.95
parseOptimizedMethod · 0.95

Tested by

no test coverage detected