example 1:
['one', 'two', 'one'] should return True.
example 2:
['one', 'two', 'three'] should return False.
|
example 1:
example 2:
|
|||
|
|
|
Use
|
|||
|
|
Recommended for short lists only:
Do not use on a long list -- it can take time proportional to the square of the number of items in the list! For longer lists with hashable items (strings, numbers, &c):
If your items are not hashable (sublists, dicts, etc) it gets hairier, though it may still be possible to get O(N logN) if they're at least comparable. But you need to know or test the characteristics of the items (hashable or not, comparable or not) to get the best performance you can -- O(N) for hashables, O(N log N) for non-hashable comparables, otherwise it's down to O(N squared) and there's nothing one can do about it:-(. |
|||||||||||
|
|
If you are fond of functional programming style, here is a useful function, self-documented and tested code using doctest.
From there you can test unicity by checking whether the second element of the returned pair is empty:
Note that this is not efficient since you are explicitly constructing the decomposition. But along the line of using reduce, you can come up to something equivalent (but slightly less efficient) to answer 5:
|
||||
|