This repository contains algorithms for :
- Arrays
- Hashmaps
- Linkedlists
- Queues
- Stacks
- Strings
We use Google Java Format to maintain a consistent code style throughout the project. The formatting is automatically checked as part of the build process using the Spotless Maven Plugin.
How to Format the Code
To automatically format your code, run:
mvn spotless:applyHow to Check Formatting To check if your code is correctly formatted, run:
mvn spotless:checkIf the formatting check fails during the build, use the spotless:apply command to fix the issues.