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

Function main

CodeChef_problems/Lapindromes/solution.cpp:8–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6using namespace std;
7void solve();
8int main()
9{
10 ios::sync_with_stdio(0);
11 cin.tie(0);
12 int tcases;
13 cin>>tcases;
14 while(tcases) //for running all the strings
15 {
16 solve();
17 --tcases;
18 }
19 return 0;
20}
21void solve()
22{
23 string str;

Callers

nothing calls this directly

Calls 1

solveFunction · 0.70

Tested by

no test coverage detected