- Python
- Golang
- Java
- C++
Create a new problem solution template using one of these commands:
make go 123 # Create a new Go problem #123
make java 123 # Create a new Java problem #123
make py 123 # Create a new Python problem #123
make cpp 123 # Create a new C++ problem #123Each command will:
- Create necessary directory structure
- Generate template files
- Set up test infrastructure
To run all tests in the project:
make testTo run tests for a specific problem:
make test go/0001 # Test Go problem #0001Remove Bazel build artifacts:
make cleanTo display all available commands:
make help