Question Name:CHANDU & CONSECUTIVE LETTERS

#include <stdio.h>
int main(){
    short t,i;
    char s[31];
    int j;
    scanf("%hd",&t);
    
    for(j=0;j<t;j++){
       scanf(" %s",s);
       for(i=0;s[i]!='\0';i++){
        if(s[i]==s[i+1])
            continue;
        else
            printf("%c",s[i]);
       }
       printf("\n");
    }
    return 0;
}
  • Problem Description
    Chandu is very fond of strings. (Or so he thinks!) But, he does not like strings which have same consecutive letters. No one has any idea why it is so. He calls these strings as Bad strings. So, Good strings are the strings which do not have same consecutive letters. 

    Now, the problem is quite simple. Given a string S, you need to convert it into a Good String.

    You simply need to perform one operation – if there are two same consecutive letters, delete one of them.

    Input:
    The first line contains an integer T, denoting the number of test cases.
    Each test case consists of a string S, which consists of only lower case letters.

    Output:
    For each test case, print the answer to the given problem.

    Constraints:
    1 <= T <= 10
    1 <= |S| <= 30
  • Test Case 1
    Input (stdin)3
    abb
    aaab
    ababa
    Expected Outputab
    ab
    ababa
  • Test Case 2
    Input (stdin)2
    ab
    abc
    abcd
    Expected Outputab
    abc

Leave a Reply

Your email address will not be published. Required fields are marked *

Ads Blocker Image Powered by Code Help Pro

Ads Blocker Detected!!!

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.