MCPcopy Create free account
hub / github.com/Rohit91singh9/Coding-DP-DSA / Letters

Method Letters

minimumKeypadClickCount.java:5–8  ·  view source on GitHub ↗
(char letter)

Source from the content-addressed store, hash-verified

3 private char letter;
4 private int frequency;
5 public Letters(char letter) {
6 this.letter = letter;
7 this.frequency = 0;
8 }
9 public char getLetter() {
10 return letter;
11 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected