#!/usr/bin/env python3# -*- coding: utf-8 -*-' a test module '__author__ = 'Zhang Shuai'a = [1,2,3,4]b = [3,4,5,6]'''求交集'''#方法1c = [i for i in a if i in b]#方法2c = list(set(a).intersection(se
参照:http://blog.csdn.net/yinxusen/article/details/7450213 集合A = {a, b, c} 集合B = {d, e, c, b} $ man uniqWith no options, matching lines are merged to the first occurrence.-d, --repeatedonly print d
242. 有效的字母异位词 给定两个字符串 s 和 t ,编写一个函数来判断 t 是否是 s 的字母异位词。 解题思路 很简单的题目,不值得过多的分析。 解法1 public boolean isAnagram(String s, String t) {if(s.length()!=t.length()){return false;}Map<Character,Integer> m