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

Method main

Find_Minimum_Character.java:54–63  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

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/*

Callers

nothing calls this directly

Calls 1

findMinimumCharactersMethod · 0.95

Tested by

no test coverage detected