-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmake-it-anagram.c
80 lines (80 loc) · 1.11 KB
/
make-it-anagram.c
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
//make it a anagram
#include<stdio.h>
#include<string.h>
int main()
{
int i,j,k,count=0,n1,n2,flag=0;
char str1[10000],str2[10000];
scanf("%s",str1);
scanf("%s",str2);
n1=strlen(str1);
n2=strlen(str2);
for(i=0;i<n1;i++)
{
flag=0;
if(str1[i]==0)
{
//do nothing
}
else
{
for(j=0;j<n2;j++)
{
flag=0;
if(str2[j]==0)
{
//do nothing
}
else
{
if(str1[i]==str2[j])
{
str1[i]=0;
str2[j]=0;
flag=1;
break;
}
}
}
if(flag==0)
{
count++;
}
}
}
for(i=0;i<n2;i++)
{
flag=0;
if(str2[i]==0)
{
//do nothing
}
else
{
for(j=0;j<n1;j++)
{
flag=0;
if(str1[j]==0)
{
//do nothing
}
else
{
if(str2[i]==str1[j])
{
str2[i]=0;
str1[j]=0;
flag=1;
break;
}
}
}
if(flag==0)
{
count++;
}
}
}
printf("%d",count);
return 0;
}