This repository has been archived on 2024-12-13. You can view files and clone it, but cannot push or open issues or pull requests.

19 lines
545 B
Markdown

# Day 4
## Instructions
From the root directory of the crate (where this README is) just execute:
```
python day5.py
```
The solution will be printed to the terminal output.
## Notes:
I had very little time so decided to just crank out a quick solution using Python.
I was under a heavy time constraint so I ended up just implementing the brute force approach instead of designing a better algorithm.
Hopefully I can do some more algorithmic design for future problems to get better time complexity, even though it doesn't really matter.