This repository contains my solutions to the puzzles from Everybody Codes.
Everybody Codes is a coding challenge platform featuring algorithmic puzzles and problems. This repository showcases my approach to solving these challenges, primarily using Kotlin.
src/
├── main/
│ ├── kotlin/it/pidaydev/
│ │ ├── common/ # Shared utilities and helper functions
│ │ ├── story[NN]/ # Solutions for story #[NN] quests
│ │ └── y[YY]/ # Solutions for year 20YY quests
│ └── resources/ # Uncommitted - you should get your own input files!
│ └── inputs/ # Puzzle input files
│ └── solutions/ # Personal solutions, saved for non-regression testing
└── test/ # Not really using this 😅, but it's here in case I TDD some solutions
├── kotlin/ # Test files
└── resources/ # Test resources
- Language: Kotlin
- Build Tool: Gradle
Solutions are organized by year and quest number. Each quest typically has parts with increasing difficulty.
This is a personal learning repository. Feel free to reference the solutions, but I encourage you to attempt the puzzles yourself first!