-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.go
73 lines (63 loc) · 1.38 KB
/
quiz.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package main
import (
"encoding/csv"
"flag"
"fmt"
"os"
"strings"
"time"
)
func main() {
csvFilename := flag.String("csv", "problems.csv", "a csv file in the format of 'question,answer'")
timeLimit := flag.Int("limit", 30, "the time limit for the quiz in seconds")
flag.Parse()
file, err := os.Open(*csvFilename)
if err != nil {
exit(fmt.Sprintf("Failed to open the CSV file: %s", *csvFilename))
}
r := csv.NewReader(file)
lines, err := r.ReadAll()
if err != nil {
exit("Failed to parse the provided CSV file.")
}
problems := parseLines(lines)
timer := time.NewTimer(time.Duration(*timeLimit) * time.Second)
correct := 0
for i, p := range problems {
fmt.Printf("Problem #%d: %s = ", i+1, p.q)
answerCh := make(chan string)
go func() {
var answer string
fmt.Scanf("%s\n", &answer)
answerCh <- answer
}()
select {
case <-timer.C:
fmt.Printf("\nYou scored %d out of %d.\n", correct, len(problems))
return
case answer := <-answerCh:
if answer == p.a {
correct++
}
}
}
fmt.Printf("You scored %d out of %d.\n", correct, len(problems))
}
func parseLines(lines [][]string) []problem {
ret := make([]problem, len(lines))
for i, line := range lines {
ret[i] = problem{
q: line[0],
a: strings.TrimSpace(line[1]),
}
}
return ret
}
type problem struct {
q string
a string
}
func exit(msg string) {
fmt.Println(msg)
os.Exit(1)
}