Skip to content

Commit 6fc73f9

Browse files
committed
use ' instead "
1 parent c7321c0 commit 6fc73f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

complexity/05-exponential_time.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ def subsets(iterable: Iterable) -> list:
1515

1616
# O(2^n)
1717
print(list(subsets([1, 2, 3])))
18-
print(list(subsets(['a', 'b', 'c'])))
18+
print(list(subsets(["a", "b", "c"])))

0 commit comments

Comments
 (0)