WEEK 4 Work with some of your fellow classmates and go through your solution to project 1: LDPM You can work with up to three people (you MUST work with at least one other person) With whom did you work? N/A What was your strategy for solving the assignments? For this assignment I did not follow a plan for the most part I simply followed the instructions. Did you start writing code right away? Did you plan it out on paper? I mainly just started writing code; I did have to go back and split my code for separate commits What was THEIR strategy for solving the assignments? N/A How would you change your strategy having worked on the assignment? Next time I plan to spend more time on the assignment and plan out my commits and layout of code. According to your classmate(s): how well does your code follow the Google Java Style Guide N/A I do believe I reformatted all the files but did not apply any of the options (Optimize imports, Rearrange code, Code cleanup, Do not keep...
Posts
Showing posts from November, 2025
- Get link
- X
- Other Apps
WEEK 2 Lab 00 and Lab 01 In Lab 00 and Lab 01, we covered various concepts, including unit tests, Git commands, and interfaces. Unit tests are used to verify the functionality of methods. Every method in a class should have a corresponding unit test. We also learned several Git commands, such as git add . to stage all the changes made in the project, git commit -m “comment” to save the changes, and git checkout -b branch_name to create a new branch. Additionally, we explored interfaces, which serve as blueprints for a class, detailing the methods that must be overridden by classes that inherit from it.
- Get link
- X
- Other Apps
WEEK 1 CTS 338 WK01HW02 (Light) CodingBat String2, Maps, and functional The Coding Bat challenges weren’t particularly challenging, having some experience with java I did recognize nearly all of the concepts needed to answer the problems. I did need to look up maps, as I’ve only worked with hash maps. For some of the challenges I used my IDE to familiarize myself with the available methods. Most of the challenges took me one to three tries to complete. I do think some of my responses could have used less lines. Overall, this was a great refresher.