-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_readme
More file actions
26 lines (17 loc) · 802 Bytes
/
Copy path_readme
File metadata and controls
26 lines (17 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

Collection of my notes on coding and solutions to various small problems, a reminder to myself.
The language used is C++ 20, the dependencies are:
1. [boost](http://www.boost.org/).
1. [Catch](https://github.com/philsquared/Catch) unit test. See Catch's docs on [command line options and arguments](https://github.com/philsquared/Catch/blob/master/docs/command-line.md).
All examples/tests are tagged, run this to list all tags:
```
./note -t
```
Run this to list all examples/tests:
```
./note -l
```
This will run all examples/tests whose name start with "Add" and are tagged with "leetcode". `-d y` is to show how much test is used for each test:
```
./notes 'Add*' '[leetcode]' -d y
```