/ds-algo-starter

Starter for practicing ds-algo

Primary LanguageKotlin

Ds Algo Starter

Setup

Practice

  • Your solutions goes into folder src/main/java/ and corresponding tests goes into src/test/kotlin/ with same package name.
  • Test First approach.
    • Start understanding the problem by thinking about test-cases that include positive tests, negative tests, corner cases etc
  • Run tests using gradle as below
./gradlew test --tests [full-name-of-test-class]

For example

./gradlew test --tests leetcode.arrays.TopKFrequentWordsTest

VS Code setup

Note: Below setup can be done in your free time. Don't get blocked by this. You may start coding with your IDEs initially if this is taking time