vault backup: 2024-11-13 11:06:47

This commit is contained in:
2024-11-13 11:06:47 -06:00
parent 2c96f7a6ed
commit 373b1c3853
2 changed files with 20 additions and 14 deletions

View File

@@ -1,17 +1,17 @@
Positives:
- [ ] Speaks excellent English
- [ ] Obviously very familiar with Visual Studio, used short cuts like autocompleting property definitions
- [ ] Seems very calm and worked immediately, very straightforwardly
- [ ] Created well-defined methods on `Board` to facilitate various functions like "reveal box" and "flag box"
- [ ] Able to talk through his work well, explaining as he went along
- [ ] 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
- [ ] Excellent output message to user to give clear instructions on commands to input
- [ ] Showed familiarity with debugging
- [ ] Abstracted the PrintGrid functionality to a method to be able to call it multiple times
- [ ] Considered the user not knowing the array was 0-based
- Speaks excellent English
- Obviously very familiar with Visual Studio, used short cuts like autocompleting property definitions
- Seems very calm and worked immediately, very straightforwardly
- Created well-defined methods on `Board` to facilitate various functions like "reveal box" and "flag box"
- Able to talk through his work well, explaining as he went along
- 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
- Excellent output message to user to give clear instructions on commands to input
- Showed familiarity with debugging
- Abstracted the PrintGrid functionality to a method to be able to call it multiple times
- Considered the user not knowing the array was 0-based
Concerns:
- [ ] Didn't appear to come super prepared with the solution in mind