25 lines
599 B
Markdown
25 lines
599 B
Markdown
|
# Problems
|
||
|
|
||
|
A collection of some example problems and solutions written in C++. Mostly these
|
||
|
are based off questions I found on [hackerrank](https://www.hackerrank.com),
|
||
|
[leetcode](https://leetcode.com/), [codility](https://www.codility.com/), or
|
||
|
similar programming practice platforms.
|
||
|
|
||
|
```
|
||
|
klips/cpp/problems
|
||
|
.
|
||
|
├── graphs # Graph implementations with related problems and solutions
|
||
|
└── README.md
|
||
|
```
|
||
|
|
||
|
We can build the examples with the following commands.
|
||
|
|
||
|
```bash
|
||
|
cd /path/to/klips/cpp/problems/
|
||
|
mkdir build && cd build
|
||
|
cmake .. && cmake --build .
|
||
|
ls bin/
|
||
|
|
||
|
problems-graphs
|
||
|
```
|