my solutions of leetCode problems
List of resolved exercices:
- 2sum - with unsorted array; O(n) complexity; took ~3ms
- 2sum - with sorted array; O(n) complexity
- Roman To Integer; O(n) complexity
- Merge Two Sorted Lists; O(n) complexity
- 3Sum - works kinda well, but still needs to be tuned; O(n2) complexity; took ~51ms
- Container with the most water; O(n) complexity
- ?