2008-01-29 Pythonでremove-duplicates Python Lisp def remove_duplicates(seq): return sorted(set(seq), key=seq.index) ref. http://ja.doukaku.org/comment/2819/