Skip to content

Commit 9183409

Browse files
authored
Merge pull request #10 from Danish-Pandita/patch-1
Update BitSequences.py
2 parents 0f730fe + 5cc2843 commit 9183409

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/chapter02recursionandbacktracking/BitSequences.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
def append_at_front(x, L):
13-
return [x + element for element in L]
13+
return [x + element for element in L]
1414

1515
def bit_strings(n):
1616
if n == 0: return []

0 commit comments

Comments
 (0)