We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7321c0 commit 6fc73f9Copy full SHA for 6fc73f9
complexity/05-exponential_time.py
@@ -15,4 +15,4 @@ def subsets(iterable: Iterable) -> list:
15
16
# O(2^n)
17
print(list(subsets([1, 2, 3])))
18
-print(list(subsets(['a', 'b', 'c'])))
+print(list(subsets(["a", "b", "c"])))
0 commit comments