Skip to content

Commit 9ca6031

Browse files
committed
Update readme and write down what I learned
1 parent 7694266 commit 9ca6031

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Note: When I started this challenge, I was a python n00b so this made my brain w
1919
- [x] Day 6: Tuning Trouble 🤖
2020
- [x] Day 7: No Space Left On Device 💾
2121
- [x] Day 8: Treetop Tree House 🌲
22-
- [ ] Day 9: Rope Bridge 🪢
22+
- [x] Day 9: Rope Bridge 🪢
2323
- [ ] Day 10: Cathode-Ray Tube
2424
- [ ] Day 11: Monkey in the Middle
2525
- [ ] Day 12: Hill Climbing Algorithm

day9/ScratchNotes.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,14 @@ up left (wide)
2020
down R (low)
2121
down R (wide)
2222
down L (low)
23-
down R (wide)
23+
down R (wide)
24+
25+
# What I learned
26+
27+
* When debugging, print stuff out and see exactly where something failed. Compare the variable values.
28+
* Check the logic in your functions, are they missing any scenarios?
29+
* Don't be afraid to go and look for help, it's not a sign of weakness, you are stuck.
30+
* If you are overwhelmed, really go take a break, you've been staring at the screen so long.
31+
* Breaking it down and visualizing it helped a lot, rubber ducking your ideas.
32+
* Making your code more generic (i.e. creating reusable functions) saves you time down the line.
33+
* You can use breakpoints in VS code and watch certain vars, it helps you check what is going on.

0 commit comments

Comments
 (0)