| 30 | // { Driver Code Starts. |
| 31 | |
| 32 | int 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 |
nothing calls this directly
no test coverage detected