MCPcopy Create free account
hub / github.com/anupam-kumar-krishnan/Competitive_Programming / main

Function main

Basic Programming/anagram.cpp:21–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19}
20
21int main()
22{
23 string str1;
24 string str2;
25 cin>>str1>>str2;
26
27
28 if (areAnagram(str1, str2))
29 cout << "The two strings are anagram of each other";
30 else
31 cout << "The two strings are not anagram of each "
32 "other";
33
34 return 0;
35}

Callers

nothing calls this directly

Calls 1

areAnagramFunction · 0.85

Tested by

no test coverage detected