This repository contains two small games implemented with different technologies to demonstrate user interface development, game logic design, and basic decision-making algorithms.
A Wordle-style game UI built with React, focusing on:
- Component-based design
- State management
- Interactive feedback
A Tic Tac Toe game where the player competes against a computer opponent that uses a simple scoring strategy to determine optimal moves.
The Tic Tac Toe computer player evaluates the board by constructing a points matrix representing the value of each possible move. The algorithm assigns scores based on potential winning combinations.
- ✅ Frontend UI development with React
- ✅ Python game logic implementation
- ✅ Turn-based game state management
- ✅ Basic AI decision-making using heuristic evaluation
- ✅ Separation between interface and logic
This repository is intended as a learning project exploring how interactive applications and simple AI behaviors can be implemented across different programming environments.
- Frontend: React
- Backend/Logic: Python
- Game Type: Turn-based interactive games