MCPcopy Create free account
hub / github.com/Ayush7614/Daily-Coding-DS-ALGO-Practice / run

Method run

Hackerank/Java/Strong-password.java:53–62  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

51 }
52
53 void run() throws Exception
54 {
55 is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
56 out = new PrintWriter(System.out);
57
58 long s = System.currentTimeMillis();
59 solve();
60 out.flush();
61 if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms");
62 }
63
64 public static void main(String[] args) throws Exception { new A().run(); }
65

Callers 1

mainMethod · 0.80

Calls 3

solveMethod · 0.95
trMethod · 0.95
isEmptyMethod · 0.45

Tested by

no test coverage detected