-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTypingMistake.java
81 lines (70 loc) · 2.68 KB
/
TypingMistake.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import java.util.*;
public class TypingMistake {
// static String check(String s, String o){
// HashMap<Character,Integer> map1=new HashMap<Character,Integer>();
// for(int i=0;i<s.length();i++)
// if(map1.containsKey(s.charAt(i)))
// map1.put(s.charAt(i),map1.get(s.charAt(i))+1);
// else
// map1.put(s.charAt(i),1);
// //the output is return by ai
// HashMap<Character,Integer> map2=new HashMap<Character,Integer>();
// for(int i=0;i<o.length();i++)
// if(map2.containsKey(o.charAt(i)))
// map2.put(o.charAt(i),map2.get(o.charAt(i))+1);
// else
// map2.put(o.charAt(i),1);
// System.out.println(map2);
// System.out.println(map1);
// int flag=0;
// for(Map.Entry<Character,Integer> m:map1.entrySet()){
// for(Map.Entry<Character,Integer> m1:map2.entrySet()){
// if(((m.getKey()==m1.getKey()) && (m.getValue()<=m1.getValue()))){
// flag+=1;
// break;
// }
// }
// }
// return flag==map1.size() ?"Yes" :"No";
// }
// public static void main(String[] args) {
// Scanner sc=new Scanner(System.in);
// int t=sc.nextInt();
// while(t-->0){
// //the ouput should be
// String s=sc.next();
// String o=sc.next();
// System.out.println(check(s,o));
// }
// sc.close();
// }
static String check(StringBuffer s,StringBuffer o){
for(int i=0;i<s.length();i++)
{
int flag=0;
for(int j=0;j<o.length();j++)
if(s.charAt(i)==o.charAt(j)){
System.out.println(s.charAt(i));
o.deleteCharAt(j);
flag=1;
break;
}
if(flag==0)
return "No";
}
return "Yes";
}
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int t=sc.nextInt();
sc.nextLine();
while(t-->0){
//the ouput should be
StringBuffer s=new StringBuffer(sc.nextLine());
StringBuffer o=new StringBuffer(sc.nextLine());
System.out.println(s+" "+o);
System.out.println(check(s, o));
}
sc.close();
}
}