This repo has practice problems, well-commented to show how to approach a solution.
- Install the latest version of Java
- Do a clean build
./gradlew clean build
- Run tests using
gradle
./gradlew [module-name]:test --tests [full-name-of-test]
For example
./gradlew ds-algo:test --tests leetcode.array.TopKFrequentWordsTest
./gradlew common:test --tests ga.overfullstack.ds.graph.DiGraphTest