Kaydet (Commit) 560f9a8a authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Add more tests for the powerset() recipe.

üst 2f6c2e03
...@@ -1491,6 +1491,12 @@ perform as purported. ...@@ -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']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment