java找出两个字符串相同的元素

前两天面试,面试官让我在5分钟之内手写一个程序,就是找出两个字符串相等的元素,当时搞了一个双重循环,面试官说很low。现在写一个高效一点的,分享一下。

public class TestMain {
    public static void main(String[] args) throws Exception {
        String A="abcdef";
        String B="adrewf";
        Set set1=new HashSet<>();
        Set set2=new HashSet<>();
        for(int i=0;i


你可能感兴趣的:(java找出两个字符串相同的元素)