Advent of Code 2020 Day 21
The puzzle today, was really just creating a map of lists, cleaning up the map to be to a single item in a list, then using that to do some further determinations of counts of things
Advent of Code 2020 Day 19
The days are getting more difficult, and today's puzzle
[https://adventofcode.com/2020/day/19] was no exception
Advent of Code 2020 Day 14
My biggest problem with part two was not realizing that whereas in part one, we were changing the value being stored, but in part two, we're storing the pre-defined VALUE to multiple address locations based on the criteria.
Advent of Code 2020 Day 11
I think the most frustrating part was that the example input data was processing and counting properly, but I was never able to get my input to work properly
Advent of Code 2020 Day 10
So, yeah...my solution sucks compared to that, but I think what I did learn was to sometimes take the methodical approach before trying to reinvent the wheel.
Advent of Code 2020 Day 9
I also continually feel like at least for Advent of Code, I spend more time to focus on better programming practices rather than speed
Advent of Code 2020 Day 8
I've yet to find a way to use java streams "properly" when having to track external state things, and especially in scenarios where there's asynchronous movements afoot
Advent of Code 2020 Day 7
So, this morning, when Sudo [http://sudothelab.com] woke me up at 1:30 AM and I
decided to use
Advent of Code 2020 Day 6
I made no logic changes and submitted the answer again, and it seemed to work this time, so for whatever reason, I probably just fat-fingered the value, which I guess happens.
Advent of Code 2020 Day 5
once you sit back and think about it, you come up with the REAL better way to approach it, iterative development is really interesting, but you have to understand your problem and have time to actually iterate on your solution to really be successful with it.