@@ -11,7 +11,7 @@ My solutions for [adventofcode.com (2016)](http://adventofcode.com/2016) with Py
11
11
- Sets up and tears down calculation of a solution for a day
12
12
- Mocks the input from the ` input.txt ` by an input string
13
13
14
- ## My libraries
14
+ ## My modules
15
15
### Point2D
16
16
- 2D point inside cartesian coordinate system
17
17
- Set and get x and y coordinates
@@ -35,3 +35,12 @@ My solutions for [adventofcode.com (2016)](http://adventofcode.com/2016) with Py
35
35
### Triangle
36
36
- Set and get side lengths
37
37
- Check if triangle is possible
38
+
39
+ ## My solutions
40
+ | Day | Task | Python modules | My modules |
41
+ | --- | ---- | -------------- | ---------- |
42
+ | 01 | Find shortest path and cross point | copy, math, PIL | Point2D, Map |
43
+ | 02 | Find codes at keypads | os, json | Keypad |
44
+ | 03 | Check triangles | re | Triangle |
45
+ | 04 | Encrypt and check room names | re, collections, operator | - |
46
+ | 05 | Create password from MD5 hashes | hashlib | - |
0 commit comments