还未发布过话题
  • 请教一个面试中的算法题 at 2017年07月27日

    感觉写的好麻烦啊。写个简单的版本。

    def f(str1, str2):
        list1 = list(str1)
        list2 = list(str2)
        new_list = []
        for i in list1:
            if not list2.__contains__(i):
                new_list.append(i)
        new_str = "".join(new_list)
        return new_str