list高效去重
list(set(seq)) # or {}.fromkeys(seq).keys()
参见 http://www.peterbe.com/plog/uniqifiers-benchmark/ 11
list, python, 高效