乙級(Basic Level) 1019 舊鍵盤
阿新 • • 發佈:2018-08-23
main clas this 中英文 以及 upper pytho nsf tro
題目描述
舊鍵盤上壞了幾個鍵,於是在敲一段文字的時候,對應的字符就不會出現。現在給出應該輸入的一段文字、以及實際被輸入的文字,請你列出
肯定壞掉的那些鍵。
輸入描述:
輸入在2行中分別給出應該輸入的文字、以及實際被輸入的文字。每段文字是不超過80個字符的串,由字母A-Z(包括大、小寫)、數字0-9、
以及下劃線“_”(代表空格)組成。題目保證2個字符串均非空。
輸出描述:
按照發現順序,在一行中輸出壞掉的鍵。其中英文字母只輸出大寫,每個壞鍵只輸出一次。題目保證至少有1個壞鍵。
輸入例子:
7_This_is_a_test
_hs_s_a_es
輸出例子:
7TI
Python: a1 = input() a2= input() lst = ‘‘ #lst = [] #lst2 = [] j = 0 for i in a1: if i != a2[j]: lst += i #lst.append(i) else: j += 1 if j >= len(a2): j -= 1 lst = lst.upper() lst2 = set(lst) for i in lst: if i in lst2: print(i,end=‘‘) lst2.remove(i)""" for i in lst: if i.upper() not in lst2: lst2.append(i.upper()) print(i.upper(),end=‘‘) """
OR: res = ‘‘ # c = ‘7_This_is_a_test‘ # d = ‘_hs_s_a_es‘ c = input() d = input() for i in c: if i not in d: if i.upper() not in res: res+=i.upper() print (res)
C++:
#include <iostream> #include <string> #include <algorithm> using namespace std; int main(){ int i,j,k; string a,b,c=""; cin>>a>>b; transform(a.begin(),a.end(),a.begin(),::toupper); transform(b.begin(),b.end(),b.begin(),::toupper); for(i=0,j=0;i<a.size();i++){ if (a[i]!=b[j]){ for(k=0;k<c.size();k++){ if(a[i] == c[k]){ k = -1; break; } } if(k!=-1) c += a[i]; } else{ j++; if(j>=b.size()) j--; } } cout<<c<<endl; return 0; }
乙級(Basic Level) 1019 舊鍵盤