MCPcopy Create free account
hub / github.com/chaharnishant11/CodeIn10DSA / main

Function main

Recursion/Homework/palindrome.cpp:32–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30// { Driver Code Starts.
31
32int main()
33{
34 ios_base::sync_with_stdio(0);
35 cin.tie(NULL);
36 cout.tie(NULL);
37
38 int t;
39 cin >> t;
40 while(t--)
41 {
42 string s;
43 cin >> s;
44
45 Solution ob;
46
47 cout << ob.isPalindrome(s) << "\n";
48 }
49
50 return 0;
51} // } Driver Code Ends

Callers

nothing calls this directly

Calls 1

isPalindromeMethod · 0.80

Tested by

no test coverage detected