vault backup: 2024-10-04 10:15:27

This commit is contained in:
2024-10-04 10:15:27 -05:00
parent be660d1ac7
commit 66a9f9eca4

View File

@@ -7,6 +7,7 @@ Positives:
- [ ] Used a nested loop and `Math.Max` and `Math.Min` to reveal box around the revealed box
- [ ] A user-facing thoughtful thing: he cleared the console at the top of each input loop
- [ ] Used `StringBuilder` to render the board output, but decided against it later
- [ ] Used string interpolation (newish C# capability) to render mine box content
Concerns:
- [ ] Didn't appear to come super prepared with the solution in mind
@@ -20,4 +21,5 @@ Other comments:
Questions to ask:
- [ ] What could you do to take your game logic and render it any way you wanted to (console, HTML, graphical...)
- [ ]
- [ ] Why did you choose to have Program.cs "own" the rendering of the board instead of Board?
- [ ] Could you have Board "own" the rendering without it knowing exactly what it's renderings (strings, icons, HTML elements, etc)?