Header Ads Widget

The Block Game | Codechef solution

     Problem:-

The citizens of Byteland regularly play a game. They have blocks each denoting some integer from 0 to 9. These are arranged together in a random manner without seeing to form different numbers keeping in mind that the first block is never a 0. Once they form a number they read in the reverse order to check if the number and its reverse is the same. If both are same then the player wins. We call such numbers palindrome.

Ash happens to see this game and wants to simulate the same in the computer. As the first step he wants to take an input from the user and check if the number is a palindrome and declare if the user wins or not. 

Input

The first line of the input contains T, the number of test cases. This is followed by T lines containing an integer N.

Output

For each input output "wins" if the number is a palindrome and "loses" if not, in a new line.

Constraints

1<=T<=20
1<=N<=20000

Input:
3
331
666
343

Output:
loses
wins
wins

 

Code:-

#include <iostream>
using namespace std;

int main() {
int t,n,rev=0;
cin>>n;
while(n--)
{
cin>>t;
rev=0;
int a;
a=t;
while(a!=0)
{
int r=a%10;
rev=rev*10+r;
a=a/10;
}
if(rev==t)
cout<<"wins"<<endl;
else
cout<<"loses"<<endl;
}
    
    return 0;
}

Recommended Post:

Cracking the coding interview:-

 Array and string:-

Tree and graph:-

Hackerearth Problems:-

Hackerrank Problems:-

Data structure:-

Key points:-

 MCQs:-

Post a Comment

0 Comments