online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
def table(): print('\n', '\n'.join([' '.join(map(str, row)) for row in game]), sep='') game = [ [0,0,0], [0,0,0], [0,0,0] ] table() game = [ [0,0,0], ['X','X','O'], [0,0,0] ] table() if any(r == ['O']*3 or r == ['X']*3 for r in game) or \ any(all(game[r][c] == s for r in range(3)) for s in ['O','X'] for c in range(3)): print('wygrałeś') game = [ [0,0,0], ['X','X','X'], [0,0,0] ] table() if any(r == ['O']*3 or r == ['X']*3 for r in game) or \ any(all(game[r][c] == s for r in range(3)) for s in ['O','X'] for c in range(3)): print('wygrałeś') game = [ [0,'X',0], [0,'X',0], [0,'X',0] ] table() if any(r == ['O']*3 or r == ['X']*3 for r in game) or \ any(all(game[r][c] == s for r in range(3)) for s in ['O','X'] for c in range(3)): print('wygrałeś') game = [ [0,'X',0], [0,'X',0], [0,'O',0] ] table() if any(r == ['O']*3 or r == ['X']*3 for r in game) or \ any(all(game[r][c] == s for r in range(3)) for s in ['O','X'] for c in range(3)): print('wygrałeś')

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue