(String[] args)
| 14 | } |
| 15 | |
| 16 | public static void main(String[] args) { |
| 17 | Scanner sc = new Scanner(System.in); |
| 18 | String s = sc.nextLine(); |
| 19 | String[] keypad = {"", "", "abc", "def", "ghi", "jkl", "mno", "pqr", "stuv", "wxyz"}; |
| 20 | combination(s, keypad, ""); |
| 21 | } |
| 22 | } |
nothing calls this directly
no test coverage detected