An open API service indexing awesome lists of open source software.

https://github.com/nanda-gopal-sb/letter-box-cpp

C++ implementation of the letter-boxed-game
https://github.com/nanda-gopal-sb/letter-box-cpp

cpp filesystem letterboxd terminal

Last synced: about 1 year ago
JSON representation

C++ implementation of the letter-boxed-game

Awesome Lists containing this project

README

          

# LetterBoxed

Welcome to the LetterBoxed project! This repository contains a C/C++ implementation of the popular word puzzle game, LetterBoxed.

## Introduction

LetterBoxed is a word puzzle game where players must create words using letters arranged around a box. The goal is to use all the letters while adhering to specific rules about letter placement.

## Installation

To compile and run the project, follow these steps:

1. Clone the repository:
```sh
git clone https://github.com/yourusername/letterBoxed.git
```
2. Navigate to the project directory:
```sh
cd letterBoxed
```
3. Compile the code:
```sh
g++ -o letterBoxed src/game.cpp
```
4. Ensure that the source files use the UNIX file format (LF) for line endings. (On linux)
```sh
dos2unix words.txt
```
5. Run the program
```sh
./letterBoxed
```