Skip to content

Commit 64d8ce8

Browse files
Update sudoku_solver.py
1 parent e6ec180 commit 64d8ce8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

data_structures/arrays/sudoku_solver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
def cross(items_a, items_b):
1212
"""
1313
Cross product of elements in A and elements in B.
14+
1415
>>> cross('AB', '12')
1516
['A1', 'A2', 'B1', 'B2']
1617
>>> cross('ABC', '123')
@@ -23,7 +24,6 @@ def cross(items_a, items_b):
2324
[]
2425
>>> cross('', '')
2526
[]
26-
2727
"""
2828
return [a + b for a in items_a for b in items_b]
2929

0 commit comments

Comments
 (0)