1084. Broken Keyboard (20) [String operation] -- PAT (Advanced Level) Practise

Source: Internet
Author: User

1084. Broken Keyboard (20) [String operation] -- PAT (Advanced Level) Practise
Question Information1084. Broken Keyboard (20)

Time limit 200 MS
The memory limit is 65536 kB.
Code length limit: 16000 B
On a broken keyboard, some of the keys are worn out. So when you type some sentences, the characters corresponding to those keys will not appear on screen.

Now given a string that you are supposed to type, and the string that you are actually type out, please list those keys which are for sure worn out.

Input Specification:

Each input file contains one test case. for each case, the 1st line contains the original string, and the 2nd line contains the typed-out string. each string contains no more than 80 characters which are either English letters [A-Z] (case insensitive), digital numbers [0-9], or "_" (representing the space ). it is guaranteed that both strings are non-empty.

Output Specification:

For each test case, print in one line the keys that are worn out, in the order of being detected. the English letters must be capitalized. each worn out key must be printed once only. it is guaranteed that there is at least one worn out key.

Sample Input:
7_This_is_a_test
_ Hs_s_a_es
Sample Output:
7TI

Solutions

Question

AC code
#include 
  
   #include 
   
    #include 
    
     #include 
     
      using namespace std;int main(){    char s[100], a[100], r[100];    set
      
        st; scanf("%s%s", s, a); int len = strlen(s), cnt = 0; for (int i = 0; i < len; ++i){ if (NULL == strchr(a, s[i])){ if (st.insert(toupper(s[i])).second){ r[cnt++] = toupper(s[i]); } } } for (int i = 0; i < cnt; ++i){ putchar(r[i]); } return 0;}
      
     
    
   
  

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.