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

Method skip

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

Source from the content-addressed store, hash-verified

79
80 private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); }
81 private int skip() { int b; while((b = readByte()) != -1 && isSpaceChar(b)); return b; }
82
83 private double nd() { return Double.parseDouble(ns()); }
84 private char nc() { return (char)skip(); }

Callers 6

ncMethod · 0.95
nsMethod · 0.95
mainMethod · 0.80
mainMethod · 0.80
mainMethod · 0.80
mainMethod · 0.80

Calls 2

readByteMethod · 0.95
isSpaceCharMethod · 0.95

Tested by

no test coverage detected