Skip to content

Commit eb38724

Browse files
authored
Merge pull request #1 from careermonk/master
Prims and Dijkstra's Algorithm heapq change
2 parents 0f730fe + 9183409 commit eb38724

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)