43 lines
593 B
Markdown
43 lines
593 B
Markdown
# Leetcode
|
|
|
|
- [My profile](https://leetcode.com/ordinary-dev/)
|
|
|
|
## How to run solutions
|
|
|
|
For programs written in C:
|
|
|
|
```bash
|
|
cd problems/random-problem
|
|
make
|
|
make run
|
|
```
|
|
|
|
For programs written in Rust:
|
|
|
|
```bash
|
|
cd problems/random-problem
|
|
cargo test
|
|
```
|
|
|
|
For programs written in Ruby:
|
|
|
|
```bash
|
|
cd problems/random-problem
|
|
ruby test.rb
|
|
```
|
|
|
|
## Solution structure
|
|
|
|
For programs written in C:
|
|
|
|
- `lib.c` - the solution itself
|
|
- `main.c` - tests
|
|
|
|
For programs written in Rust:
|
|
|
|
- `src/lib.rs` - solution and tests
|
|
|
|
For programs written in Ruby:
|
|
|
|
- `main.rb` - the solution itself
|
|
- `test.rb` - tests
|