-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
64 lines (56 loc) · 1.18 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
package main
import (
"encoding/csv"
"flag"
"fmt"
"os"
"time"
)
func main() {
csvFilename := flag.String("csv", "problems.csv", "takes a csv file with question and answer")
timeLimit := flag.Int("limit", 30, "time limit for the test")
flag.Parse()
file, err := os.Open(*csvFilename)
if err != nil {
fmt.Printf("Could not open csv file")
}
r := csv.NewReader(file)
lines, err := r.ReadAll()
qna := parser(lines)
timer := time.NewTimer(time.Duration(*timeLimit) * time.Second)
count := 0
answerChan := make(chan string)
for i, list := range qna {
fmt.Printf("Question %d is %s ", i+1, list.q)
go func() {
var ans string
fmt.Scanf("%s \n", &ans)
answerChan <- ans
}()
select {
case <-timer.C:
fmt.Printf("\nTime out...You scored %d out of %d ", count, len(qna))
return
case ans := <-answerChan:
if list.a == ans {
fmt.Println("correct")
count++
}
}
}
fmt.Printf("You scored %d out of %d \n", count, len(qna))
}
type csvStruct struct {
q string
a string
}
func parser(lines [][]string) []csvStruct {
ret := make([]csvStruct, len(lines))
for i, line := range lines {
ret[i] = csvStruct{
q: line[0],
a: line[1],
}
}
return ret
}