(String args[])
| 1 | import java.util.*; |
| 2 | class DuplicateCount{ |
| 3 | public static void main(String args[]) |
| 4 | { |
| 5 | String s = "SHASHWAT"; |
| 6 | countDuplicates(s); |
| 7 | } |
| 8 | public static void countDuplicates(String inp) |
| 9 | { |
| 10 | HashMap<Character,Integer> map = new HashMap<>(); |
nothing calls this directly
no test coverage detected