(String[] args)
| 52 | } return (resultWord.length() - q); |
| 53 | } |
| 54 | public static void main(String[] args) throws Exception |
| 55 | { |
| 56 | try (Scanner sc = new Scanner(System.in)) { |
| 57 | System.out.println("Enter Search Word"); |
| 58 | String str1 = sc.nextLine(); |
| 59 | System.out.println("Enter Result Word"); |
| 60 | String str2 = sc.nextLine(); |
| 61 | System.out.println(findMinimumCharacters(str1, str2)); |
| 62 | } |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | /* |
nothing calls this directly
no test coverage detected