Tucil (Tugas Kecil) of Design of Algorithms (IF2211). A 24 game solver using C++. This program generates all solutions to a given 24 game problem using brute force algorithm.
- 13521019 Ditra Rizqa Amadia
- 24 game solver
- Generate a random combination of cards
- Save solutions to a text file
.
├── bin ------------------------------------------ Folder containing executable files (*.exe)
│ └── 24 Solver.exe
├── doc ------------------------------------------ Folder containing project documents
│ ├── Tucil1_K3_13521019_Ditra Amadia.pdf ------ Project Report
│ └── Tucil1-Stima-2023.pdf -------------------- Project Specification
├── src ------------------------------------------ Folder containing source files (*.cpp)
│ ├── calculation.cpp
│ ├── exit.cpp
│ ├── functions.cpp
│ ├── generate.cpp
│ ├── input.cpp
│ ├── main.cpp
│ ├── menu.cpp
│ ├── save.cpp
│ └── splash.cpp
├── test ------------------------------------------ Folder containing test files
│ ├── 1_2_3_4.txt
│ ├── 3_4_7_8.txt
│ ├── 3_5_10_4.txt
│ ├── 6_6_6_6.txt
│ ├── A_2_3_4.txt
│ ├── K_8_6_10.txt
│ └── Q_4_J_7.txt
└── README.md
- Clone this repository
- Go to bin folder:
/bin/
- Run
24 Solver.exe
by double click or command:./"24 Solver.exe"
- C++