vote up 1 vote down star

Hi. I wasn't sure if there was any good way of doing this. But I thought I'd give stackoverflow a try :)

I have a list/array with integers, and a second array also with integers. I want to find the max value from the first list, but the value can not be in the second array.

Is there any "fancy" way in python to put this down to one expression?
max_value = max(firstArray) that is not in secondArray

flag

2 Answers

vote up 12 vote down check

Use sets to get the values in firstArray that are not in secondArray:

max_value = max(set(firstArray) - set(secondArray))
link|flag
1  
set() has to be one of my favorite types in python! Perl taught us to think in dictionaries, Python to think in sets. – Daren Thomas Oct 14 at 9:07
unsupported operand type(s) for -: 'list' and 'list' – Johannes Oct 14 at 9:07
oh I meant 'int' and 'set' ... not 'list' and 'list' – Johannes Oct 14 at 9:08
max(set([1,2,3,4,5]) - set([3,5])) == 4 – truppo Oct 14 at 9:10
ah lol ofc ;) nice thanks .. didnt read the line careful enough – Johannes Oct 14 at 9:11
vote up 1 vote down

Here's one way:

max_value = [x for x in sorted(first) if x not in second][0]

It's less efficient than sorting then using a for loop to test if elements are in the second array, but it fits on one line nicely!

link|flag
nice thanks :D :D – Johannes Oct 14 at 9:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.