i wanna represent a set of two int values as one value, so i can have:
x = f(a,b) = f(b,a)
so x should not represent more than one set.
Any help please.
|
i wanna represent a set of two int values as one value, so i can have:
so x should not represent more than one set. Any help please. |
|||
| show 7 more comments |
|
The
|
|||||||||||||
|
|
If you don't want an integer as value for x, I think returning the ordered tuple should be ok (it works for all number of values):
|
|||
|
|
frozenset? They are hashable. – Dan D. Nov 20 '12 at 10:53x = id(a) + id(b)? I think this should work.id(a)generates unique identifier for an object. – Rohit Jain Nov 20 '12 at 10:55hash(frozenset([a, b])). – Blckknght Nov 20 '12 at 11:12