blob: f8ae070629831918d821efdaefa658abe674cd57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Day 1
## First Part
Simple two sum problem
perl sumto.pl
## Second part
[Three sum problem](https://www.callicoder.com/three-sum-problem/), which is like two sum problem after fixing the first index
perl threesum.pl
|