2021-11-05 12:27:07 +00:00
|
|
|
# Gleb's leetcode solutions
|
|
|
|
These are most of my solutions to various
|
|
|
|
[leetcode](https://leetcode.com) problems.
|
|
|
|
|
|
|
|
They are by no means the best solutions, rather
|
|
|
|
what I could come up with by myself.
|
|
|
|
|
|
|
|
In each solution I always aim for the lowest
|
|
|
|
possible time complexity first; however, there
|
|
|
|
may be multiple solutions for some problems to
|
|
|
|
try to minimise space complexity instead.
|
2021-11-05 12:52:08 +00:00
|
|
|
|
|
|
|
## Naming
|
|
|
|
Each folder is the name of the problem from its URL,
|
|
|
|
so the problem can be accessed at:
|
|
|
|
```
|
|
|
|
https://leetcode.com/problems/<folder-name>/
|
|
|
|
```
|
2022-05-31 00:23:00 +00:00
|
|
|
|
|
|
|
All solutions for the various languages are named
|
|
|
|
`sol.<ext>`, although generally I don't vary all that
|
|
|
|
much.
|