How do we determine if a player has won vertically in the game of tic-tac-toe?
Thursday, 03 August 2023
by EITCA Academy
In the game of tic-tac-toe, determining if a player has won vertically involves checking if they have placed their marker in a column that contains three of their markers in a row. This can be achieved by examining the game board and analyzing the placement of markers in each column. To determine a vertical win,
- Published in Computer Programming, EITC/CP/PPF Python Programming Fundamentals, Advancing in Python, Vertical winners, Examination review
Tagged under:
2D Lists, Computer Programming, Game Logic, Nested Loops, Python Programming, Tic Tac Toe

