Game of 2048 and Game of 15 implemented in kotlin language. Built as an assignment during my course on Coursera.
- 2048 is a single-player sliding block puzzle game designed by Italian web developer Gabriele Cirulli. The game's objective is to slide numbered tiles on a grid to combine them to create a tile with the number 2048.
Source
- The 15-puzzle is a sliding puzzle that consists of a frame of numbered square tiles in random order with one tile missing. The object of the puzzle is to place the tiles in order by making sliding moves that use the empty space.
Source
- Open the project in IntelliJ IDEA.
- Run the main() method in GameMenu class.
- Game Time!