LLD - Design — Tic-Tac-Toe Game
Given a game system supporting multiple players, what will be the output of this Python snippet?
players = ['Alice', 'Bob', 'Carol']
turns = 5
for i in range(turns):
current = players[i % len(players)]
print(current)