L1-011 A-B Java 部分解
Posted 黄某人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了L1-011 A-B Java 部分解相关的知识,希望对你有一定的参考价值。
有两个点不能通过, 给出代码:
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { // 部分解, 有一部分的例子超时了. public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String str = br.readLine(); String str2 = br.readLine(); System.out.print(str.replaceAll("["+str2+"]", "")); } }
以上是关于L1-011 A-B Java 部分解的主要内容,如果未能解决你的问题,请参考以下文章