Skip to content

Commit

Permalink
add sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
lochungtin committed Dec 29, 2023
1 parent 5cecb82 commit 94d0ca3
Show file tree
Hide file tree
Showing 16 changed files with 48 additions and 27 deletions.
42 changes: 15 additions & 27 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,6 @@ Project Expedite is my attempt to create solutions, algorithms, or solvers to cl

3. **Robustness** - The solution should be able to adapt to different "difficulty" levels of the game, whatever that may mean to the game, be it grid size or available options.

## Usage

Setup an environment with any python version `> 3.7` and run the command in the root directory.

```bash
python3 main.py --gamemode <gamemode> --config <config_file_index>

python3 main.py -g <gamemode> -c <config_file_index>
```

Run the command `python3 main.py --help` for more information.

## Directory and Status

The following list shows the puzzle games for this project and their respective status in solution development.
Expand All @@ -30,21 +18,21 @@ This list will be expanded upon and updated as status for sub-projects change an

<div align="center">

| Game | Algorithm Status |
| :------------------------------------------ | :---------------------------------------------------------- |
| [2048](./docs/2048.md) | 📒 Backlog |
| [Kuromasu](./docs/Kuromasu.md) | ✅ Complete |
| [Mastermind](./docs/Mastermind.md) | 🛑 Paused |
| [Mine Sweeper](./docs/MineSweeper.md) | ✅ Complete |
| [Nonogram](./docs/Nonogram.md) | 🛑 Paused |
| [Numberlink](./docs/Numberlink.md) | 📒 Backlog |
| [Slitherlink](./docs/Slitherlink.md) | 📒 Backlog |
| [Snake](./docs/Snake.md) |[Partly Complete](https://github.com/lochungtin/snakeAI) |
| [Sudoku](./docs/Sudoku.md) | ✅ Complete |
| [Tazuku](./docs/Tazuku.md) | ✅ Complete |
| [(NYT) SpellingBee](./docs/SpellingBee.md) | ✅ Complete |
| [(NYT) Wordle](./docs/Wordle.md) | ✅ Complete |
| [(NYT) Letter Boxed](./docs/LetterBoxed.md) | 📒 Backlog |
| Game | Algorithm Status |
| :------------------------------------------------ | :---------------------------------------------------------- |
| [2048](./docs/games/2048.md) | 📒 Backlog |
| [Kuromasu](./docs/games/Kuromasu.md) | ✅ Complete |
| [Mastermind](./docs/games/Mastermind.md) | 🛑 Paused |
| [Mine Sweeper](./docs/games/MineSweeper.md) | ✅ Complete |
| [Nonogram](./docs/games/Nonogram.md) | 🛑 Paused |
| [Numberlink](./docs/games/Numberlink.md) | 📒 Backlog |
| [Slitherlink](./docs/games/Slitherlink.md) | 📒 Backlog |
| [Snake](./docs/games/Snake.md) |[Partly Complete](https://github.com/lochungtin/snakeAI) |
| [Sudoku](./docs/games/Sudoku.md) | ✅ Complete |
| [Tazuku](./docs/games/Tazuku.md) | ✅ Complete |
| [(NYT) SpellingBee](./docs/games/SpellingBee.md) | ✅ Complete |
| [(NYT) Wordle](./docs/games/Wordle.md) | ✅ Complete |
| [(NYT) Letter Boxed](./docs/games/LetterBoxed.md) | 📒 Backlog |

</div>

Expand Down
15 changes: 15 additions & 0 deletions docs/Usage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Usage

Setup an environment with any python version `> 3.7` and run the command in the root directory.

```bash
python3 main.py --gamemode <gamemode> --config <config_file_index>

python3 main.py -g <gamemode> -c <config_file_index>
```

Run the command `python3 main.py --help` for more information.

## Configs <!-- {docsify-ignore} -->

Each game has its separate config file format, please refer to the doc file for each game.
18 changes: 18 additions & 0 deletions docs/_sidebar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
- [Home](./)
- [Usage](./Usage)

---

- [2048](./games/2048.md)
- [Kuromasu](./games/Kuromasu.md)
- [Mastermind](./games/Mastermind.md)
- [Mine Sweeper](./games/MineSweeper.md)
- [Nonogram](./games/Nonogram.md)
- [Numberlink](./games/Numberlink.md)
- [Slitherlink](./games/Slitherlink.md)
- [Snake](./games/Snake.md)
- [Sudoku](./games/Sudoku.md)
- [Tazuku](./games/Tazuku.md)
- [(NYT) SpellingBee](./games/SpellingBee.md)
- [(NYT) Wordle](./games/Wordle.md)
- [(NYT) Letter Boxed](./games/LetterBoxed.md)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 94d0ca3

Please sign in to comment.