diff options
author | Yigit Sever | 2021-12-12 01:24:32 +0300 |
---|---|---|
committer | Yigit Sever | 2021-12-12 01:24:32 +0300 |
commit | 4bb6f8d06c0e384f3394012b1d48da58ed28cc5e (patch) | |
tree | d6478c85c0488a1059567ccd2882cb10039c2546 /2020/day1/README.md | |
parent | ae3853b6e8ab02023ccd74baac6dc177b1ee879a (diff) | |
download | aoc-4bb6f8d06c0e384f3394012b1d48da58ed28cc5e.tar.gz aoc-4bb6f8d06c0e384f3394012b1d48da58ed28cc5e.tar.bz2 aoc-4bb6f8d06c0e384f3394012b1d48da58ed28cc5e.zip |
2020, tracking
Diffstat (limited to '2020/day1/README.md')
-rw-r--r-- | 2020/day1/README.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2020/day1/README.md b/2020/day1/README.md new file mode 100644 index 0000000..f8ae070 --- /dev/null +++ b/2020/day1/README.md | |||
@@ -0,0 +1,13 @@ | |||
1 | # Day 1 | ||
2 | |||
3 | ## First Part | ||
4 | |||
5 | Simple two sum problem | ||
6 | |||
7 | perl sumto.pl | ||
8 | |||
9 | ## Second part | ||
10 | |||
11 | [Three sum problem](https://www.callicoder.com/three-sum-problem/), which is like two sum problem after fixing the first index | ||
12 | |||
13 | perl threesum.pl | ||