LLD - Design — Tic-Tac-Toe Game
Consider the following code snippet managing turns for 3 players:
What will be the printed output?
current_player = 2
for _ in range(5):
current_player = (current_player + 1) % 3
print(current_player)What will be the printed output?
