Mercurial > pylearn
view misc.py @ 84:aa9e786ee849
added function have_raised that evaluate the string in parameter and return true if the function have raised an exception
code cleanup and renaming
added a few test
author | Frederic Bastien <bastienf@iro.umontreal.ca> |
---|---|
date | Mon, 05 May 2008 11:49:40 -0400 |
parents | 718befdc8671 |
children | e9a95e19e6f8 |
line wrap: on
line source
def unique_elements_list_intersection(list1,list2): """ Return the unique elements that are in both list1 and list2 (repeated elements in listi will not be duplicated in the result). This should run in O(n1+n2) where n1=|list1|, n2=|list2|. """ return list(set.intersection(set(list1),set(list2)))