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
- Host: GitHub
- URL: https://github.com/nanda-gopal-sb/letter-box-cpp
- Owner: nanda-gopal-sb
- Created: 2024-09-19T07:48:45.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-10T17:44:55.000Z (over 1 year ago)
- Last Synced: 2025-02-08T22:24:19.710Z (over 1 year ago)
- Topics: cpp, filesystem, letterboxd, terminal
- Language: C++
- Homepage:
- Size: 1.02 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```