20 lines
269 B
Markdown
20 lines
269 B
Markdown
# Leetcode
|
|
|
|
- [My profile](https://leetcode.com/ordinary-dev/)
|
|
|
|
## How to run solutions
|
|
|
|
For programs written in C:
|
|
|
|
```
|
|
cd problems/random-problem
|
|
make
|
|
make run
|
|
```
|
|
|
|
## Solution structure
|
|
|
|
For programs written in C:
|
|
|
|
- `lib.c` - the solution itself
|
|
- `main.c` - tests
|