quiz
quiz copied to clipboard
Ex 1 - Run timed quizzes via the command line
Please take a look at my solution
Pretty new to go and trying to apply what I've been reading about structuring good go code. Pretty sure I missed something :-)
Here is my solution to the quiz exercise. It should satisfy both parts including the bonus exercises. The approach I took was to use a Quiz struct to hold state,...
Hi @joncalhoun ! What do you think about my implementation? I use a single chan of bool and two func: one for timeout and one for the quiz. The first...
Hi, this is my take on this exercise. I just just one struct to solve it. I would really like an intensive code review on this to learn more about...
Here is my solution to the quiz exercise. I know it's way more code than the other solutions, but I wanted to take a more structured object-oriented approach, use encapsulation...