Skip to content

Commit 32ee258

Browse files
fix(readme): change nested title size
1 parent d983fdb commit 32ee258

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ of goals I have for this project before I consider it to be complete, in no part
5050

5151
A more detailed description of each goal can be found below:
5252

53-
#### Refactor Old Code to Match Current Standards
53+
### Refactor Old Code to Match Current Standards
5454

5555
This is my longest standing project in terms of the initial creation date. As such, the earlier code does
5656
not reflect my current standards. One of the current goals is to revise such code to improve quality.
@@ -60,12 +60,12 @@ not reflect my current standards. One of the current goals is to revise such cod
6060
> of the algorithms 10+ times as this library tends to evolve as I become a better programmer.
6161
> If something doesn't look quite right, it probably isn't.
6262
63-
#### Full Test Coverage
63+
### Full Test Coverage
6464

6565
While this library is meant for competitive programming (where tests don’t carry over), it should still have
6666
full test coverage — including tests derived from problems where I used components of this library to solve them.
6767

68-
#### Performance with Supporting Benchmarks
68+
### Performance with Supporting Benchmarks
6969

7070
In the spirit of competitive programming, while solving the problem is the main goal, performance is also
7171
a key component. Benchmarks should back up various design decisions when it comes to how I have chosen to
@@ -75,7 +75,7 @@ structure and implement various key algorithms and data structures.
7575
> While I do want 100% test coverage, I'm less concerned about benchmarks. Benchmarks will be added
7676
> as I find them necessary to support design decisions.
7777
78-
#### Codebase Atomizer
78+
### Codebase Atomizer
7979

8080
The *Atomizer* is a tool used to break down the codebase into smaller, more manageable pieces, that can be
8181
retrieved quickly. For example, if you want to use a specific function, say `output_container` to keep things
@@ -87,7 +87,7 @@ use Kruskal's algorithm, you can use the *Atomizer* to retrieve the `kruskal.cpp
8787
supporting `DisjointSet` class used within the algorithm. Again saving you from finding the specific lines of code
8888
within the header file that you need.
8989

90-
#### Full Implementation of the CPH (Competitive Programming Handbook)
90+
### Full Implementation of the CPH (Competitive Programming Handbook)
9191

9292
The [*Competitive Programming Handbook*](https://cses.fi/book/book.pdf) by Antti Laaksonen is an awesome, all in one,
9393
resource for everything competitive programming. It contains everything from compiling and reading input to sweep line

0 commit comments

Comments
 (0)