Problem I am self-teaching Python. I wrote a simple and extendable version of Tic-Tac-Toe. As far as I know, I […]
Tag: tic-tac-toe
Check for a win on the board
Problem This code is part of a tic tac toe game. It uses a 2D array for the board. The […]
Tic Tac Toe C++ with classes
Problem After A ton of work I finally have a working Tic Tac Toe game that I am very proud […]
Simple Tic-Tac-Toe game in React.js
Problem I’m relatively new to react and attempted to create a simple Tic-Tac-Toe game. Would be great if i could […]
C# Tic Tac Toe Game with SOLID
Problem i’m doing a Core for a Tic Tac Toe game. I have my code with a dynamic size of […]
Tic-Tac-Toe game in C#
Problem I’ve been learning C#, and today I made a simple Tic Tac Toe game. The code is pretty long, […]
Evaluation function for minimax/alphabeta algorithm for Tic Tac Toe AI
Problem I am trying to develop an optimal evaluation function to use in minimax/alpha-beta algorithm for developing tic-tac-toe AI. I […]
Representing Tic-Tac-Toe using a binary BitBoard
Problem So I have been learning more about binary numbers lately, particularly in related to describing a gamestate. While perhaps […]
Tic-Tac-Toe class written in Python
Problem How well is this Tic Tac Toe code written? Where may I improve it? This is meant to be […]
Tic Tac Toe in React (official tutorial)
Problem Hi everyone ! I am new to react and more of a backend developper (working with Django, Symfony, Code […]