https://github.com/rishabhdeepsingh/competitive_cpp
Data structure and algorithms tested and usable using bazel
https://github.com/rishabhdeepsingh/competitive_cpp
competitive-programming cpp testing
Last synced: 4 months ago
JSON representation
Data structure and algorithms tested and usable using bazel
- Host: GitHub
- URL: https://github.com/rishabhdeepsingh/competitive_cpp
- Owner: rishabhdeepsingh
- Created: 2022-07-03T14:03:22.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-02T21:39:08.000Z (almost 3 years ago)
- Last Synced: 2025-01-03T12:12:46.532Z (5 months ago)
- Topics: competitive-programming, cpp, testing
- Language: C++
- Homepage: https://www.whiteknife.in/competitive_cpp
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# competitive_cpp
[](https://github.com/rishabhdeepsingh/competitive_cpp/stargazers)   [](https://www.codefactor.io/repository/github/rishabhdeepsingh/competitive_cpp/overview/main)
Data structure and algorithms tested and usable using bazel
## Building
```
bazel build //...
```## Testing 🧪
to run all the tests
```
bazel test //...
```If you want to run a specific `cc_test`
```
bazel test test/strings:string_utils_test
```## Contributions
Contributions are always welcomed, Please raise a CL if you want to add an algorithm or data structure.
Also don't forget to add the test cases, documentation if required.We are using [Google style guides](https://google.github.io/styleguide/cppguide.html) for formatting and code structure.