Add more tests for the powerset() recipe.
This commit is contained in:
parent
2f6c2e03a8
commit
560f9a8a90
|
@ -1491,6 +1491,12 @@ perform as purported.
|
||||||
>>> list(powerset([1,2,3]))
|
>>> list(powerset([1,2,3]))
|
||||||
[(), (1,), (2,), (3,), (1, 2), (1, 3), (2, 3), (1, 2, 3)]
|
[(), (1,), (2,), (3,), (1, 2), (1, 3), (2, 3), (1, 2, 3)]
|
||||||
|
|
||||||
|
>>> all(len(list(powerset(range(n)))) == 2**n for n in range(18))
|
||||||
|
True
|
||||||
|
|
||||||
|
>>> list(powerset('abcde')) == sorted(sorted(set(powerset('abcde'))), key=len)
|
||||||
|
True
|
||||||
|
|
||||||
>>> list(unique_everseen('AAAABBBCCDAABBB'))
|
>>> list(unique_everseen('AAAABBBCCDAABBB'))
|
||||||
['A', 'B', 'C', 'D']
|
['A', 'B', 'C', 'D']
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue