Week 4
For this week, one of my assignments was to reflect on completing my Markov program, and compare my reflections to those of my teammates. Who did you work with? You can work with up to three people For this exercise, Luis Hernandez and Edward Torres. What was your strategy for solving the Markov assignment? Did you start writing code right away? Did you plan it out on paper? I typically read the instructions in the prompt first to get a mental picture of how the program should work, and how the different parts of it interact. I also reviewed the lab video since I couldn't attend the session live. When reading through the prompt, the driver file, and the test file, I also try to identify which methods or classes need to be written first. I usually choose to implement methods that don't depend on others first. Depending on how the tests are written (if the methods or classes are too dependent on each other), I often wait until the end to run the test file. The interdependency can...