题解 | #名字串生成I#
名字串生成I
https://www.nowcoder.com/practice/6544721abdd54f1f938f2a98ac03922a
知识点:字符串 子串
思路:找字符串1和字符串2 的公共部门,只需要在子串1中将子串2替换掉即可,简单题
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param str1 string字符串 * @param str2 string字符串 * @return string字符串 */ public String gcdOfStrings (String str1, String str2) { // write code here if (str1.contains(str2)) { return str1.replaceFirst(str2, ""); } else if (str2.contains(str1)) { return str2.replaceFirst(str1, ""); } else { return ""; } } }