Skip to content

Tic-tac-toe, Memory Game, Wordle

Published:

Table of contents

Open Table of contents

Intro

Below you’ll find implementations of three small yet engaging games:

All these games are built using TypeScript and React.js. To run any of them locally, follow the provided steps in the “Running Locally” section.

Tic-tac-toe

Tic-tac-toe is a classic game, where two players take turns marking X and O on a 3x3 grid, aiming to get three of their symbols in a row, column, or diagonal to win.

Wordle

Wordle is a word puzzle game, where you need to guess a five-letter word within six attempts. After each guess, you’ll receive feedback on which letters are correct and in the right position, helping you narrow down the word.

Memory Game

The Memory Game is a fun and challenging game, where you need to find and match pairs of identical cards by flipping them over two at a time. This game is a great exercise for memory and concentration.

Running Locally