quiz
quiz copied to clipboard
Ex 1 - Run timed quizzes via the command line
First time with Go. Any feedback would be appreciated.
My first attempt at solving this coding exercise. Any feedback is greatly appreciated!
This PR adds the implementation for the quiz program.It includes the timer flag for the time period to complete the task and used "context" package for synchronizing the function call...
package main import ( "encoding/csv" "flag" "fmt" "os" "time" ) func main() { // Parse CSV file name from command-line arguments csvFileName := flag.String("csv", "problems.csv", "a csv file in the...