MCPcopy Create free account
hub / github.com/MohamedMetwalli5/HackerRank-Solutions / main

Method main

ProblemSolving (General)/Pangrams.java:28–41  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

26 private static final Scanner scanner = new Scanner(System.in);
27
28 public static void main(String[] args) throws IOException {
29 BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(System.getenv("OUTPUT_PATH")));
30
31 String s = scanner.nextLine();
32
33 String result = pangrams(s);
34
35 bufferedWriter.write(result);
36 bufferedWriter.newLine();
37
38 bufferedWriter.close();
39
40 scanner.close();
41 }
42}

Callers

nothing calls this directly

Calls 1

pangramsMethod · 0.95

Tested by

no test coverage detected