Metadata-Version: 2.1
Name: 2048-cli
Version: 0.0.2
Summary: 
Author-email: gbPagano <guilhermebpagano@gmail.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# 2048 cli
A small clone of [2048](https://play2048.co/). In it, the player moves numbered blocks in a 4x4 grid, combining them to create a block with the number 2048. 
The challenge lies in the strategy to avoid running out of moves possible. 
The game ends when the grid is full and there are no more combinations available


In this project, I also try to develop an A.I. using the Monte Carlo method to try to achieve the best possible score.

## Installation
```bash
$ git clone https://github.com/gbPagano/2048-game-for-terminal
$ poetry install
$ task install
```

```bash
$ task run
```

## Modes
### Single Player
In single player mode, you command the moves with the aim of achieving the highest possible score.

#### photos (to do)

### AI Playing
In AI game mode, moves will be generated using a Monte Carlo search algorithm.

#### photos (to do)

