forked from gophercises/quiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
90 lines (78 loc) · 1.92 KB
/
main.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package main
import (
"bufio"
"encoding/csv"
"flag"
"fmt"
"math/rand"
"os"
"strings"
"time"
)
func main() {
csvFilename := flag.String("csv", "problems.csv", "A CSV in 'question,answer' format.")
timeLimit := flag.Int("limit", 30, "the time limit for each question in seconds")
randomize := flag.Bool("random", false, "default false, if set to true, will randomize order of questions")
flag.Parse()
// Read From CSV
file, err := os.Open(*csvFilename)
if err != nil {
exit(fmt.Sprintf("Failed to open csv file: %s\n", *csvFilename))
os.Exit(1)
}
r := csv.NewReader(file)
lines, err := r.ReadAll()
if err != nil {
exit("Failed to parse the provided CSV file")
}
problems := parseLines(lines)
// Randomize
if *randomize && len(problems) > 0 {
rand.Seed(time.Now().Unix())
rand.Shuffle(len(problems), func(i, j int) {
problems[i], problems[j] = problems[j], problems[i]
})
}
// Pause until user is presses enter
fmt.Printf("Press enter when ready to start. Time limit is %d seconds", *timeLimit)
bufio.NewReader(os.Stdin).ReadBytes('\n')
timer := time.NewTimer(time.Duration(*timeLimit) * time.Second)
correct := 0
for i, p := range problems {
fmt.Printf("Problem #%d: %s = \n", i+1, p.q)
answerCh := make(chan string)
go func() {
var answer string
fmt.Scanf("%s", &answer)
answerCh <- strings.ToLower(strings.Trim(answer, " "))
}()
select {
case <- timer.C:
fmt.Printf("Time Out: You 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)
}