2022-12-03 12:19:24 +05:00
|
|
|
# Rubycode
|
|
|
|
|
|
|
|
Solutions of leetcode problems in Ruby.
|
2022-11-17 15:09:28 +05:00
|
|
|
|
2022-11-17 17:03:36 +05:00
|
|
|
- [My profile](https://leetcode.com/ordinary-dev/)
|
|
|
|
|
|
|
|
## How to run solutions
|
|
|
|
|
2022-11-25 23:43:40 +05:00
|
|
|
```bash
|
|
|
|
cd problems/random-problem
|
|
|
|
ruby test.rb
|
|
|
|
```
|
|
|
|
|
2022-11-17 17:03:36 +05:00
|
|
|
## Solution structure
|
|
|
|
|
2022-11-25 23:43:40 +05:00
|
|
|
- `main.rb` - the solution itself
|
|
|
|
- `test.rb` - tests
|