Skip to content

Commit 2bc9954

Browse files
committed
Merge branch 'master' of github.com:spamegg1/futurecoder into spamegg1_tictactoe1
2 parents 3415efe + a01ab58 commit 2bc9954

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/main/chapters/c10_boolean operators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ def generate_inputs(cls):
658658
final_text = """
659659
Well done! This was a hard one. Here are some possible solutions:
660660
661-
def diagonal_winner(row1, row2, row3):
661+
def diagonal_winner(board):
662662
middle = board[1][1]
663663
return (
664664
(middle == board[0][0] and middle == board[2][2]) or

0 commit comments

Comments
 (0)