MCPcopy Create free account
hub / github.com/Vishruth-S/CompetitiveCode / main

Function main

Hackerrank_problems/Making Anagrams/solution.cpp:43–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41}
42
43int main(){
44 ofstream fout(getenv("OUTPUT_PATH"));
45
46 string a;
47 getline(cin, a);
48
49 string b;
50 getline(cin, b);
51
52 int res = makeAnagram(a, b);
53
54 fout << res << "\n";
55
56 fout.close();
57
58 return 0;
59}

Callers

nothing calls this directly

Calls 1

makeAnagramFunction · 0.85

Tested by

no test coverage detected