zoukankan      html  css  js  c++  java
  • [PAT] 1084 Broken Keyboard (20 分)Java

    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 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

     1 package pattest;
     2 
     3 import java.io.BufferedReader;
     4 import java.io.IOException;
     5 import java.io.InputStreamReader;
     6 import java.util.LinkedHashSet;
     7 import java.util.Set;
     8 
     9 /**
    10  * @Auther: Xingzheng Wang
    11  * @Date: 2019/2/26 23:24
    12  * @Description: pattest
    13  * @Version: 1.0
    14  */
    15 public class PAT1084 {
    16     public static void main(String[] args) throws IOException {
    17         BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
    18         String s1 = reader.readLine().toUpperCase();
    19         String s2 = reader.readLine().toUpperCase();
    20         char[] c1 = s1.toCharArray();
    21         char[] c2 = s2.toCharArray();
    22         Set<Character> set1 = new LinkedHashSet<>();
    23         Set<Character> set2 = new LinkedHashSet<>();
    24         for (int i = 0; i < c1.length; i++) {
    25             set1.add(c1[i]);
    26         }
    27         for (int i = 0; i < c2.length; i++) {
    28             set2.add(c2[i]);
    29         }
    30         for (Character c : set2)
    31             set1.remove(c);
    32         for (Character c : set1)
    33             System.out.print(c);
    34     }
    35 }
  • 相关阅读:
    深入理解Azure自动扩展集VMSS(1)
    使用ARM和VMSS创建自动扩展的web集群
    使用ARM模板部署自动扩展的Linux VMSS(2)
    使用ARM模板部署自动扩展的Linux VMSS(1)
    Azure上A/D系列虚拟机到DS系列迁移(2)
    ORM进阶操作
    Django之中间件
    restful十项规范
    同源策略与跨域请求
    Django之CSRF问题
  • 原文地址:https://www.cnblogs.com/PureJava/p/10498196.html
Copyright © 2011-2022 走看看