File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
lesson_03/quiz/src/quizzes Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
import {
2
+
2
3
AnswerChoice ,
3
4
MultipleChoiceQuizQuestion ,
4
5
QuizQuestion ,
5
6
QuizQuestionProvider ,
6
7
} from 'codedifferently-instructional' ;
7
8
9
+
8
10
export class DylanLaffertyQuiz implements QuizQuestionProvider {
9
11
getProviderName ( ) : string {
10
12
return 'dylanlafferty' ;
11
13
}
12
14
13
15
makeQuizQuestions ( ) : QuizQuestion [ ] {
16
+
14
17
return [
15
18
DylanLaffertyQuiz . makeQuestion0 ( ) ,
16
19
DylanLaffertyQuiz . makeQuestion1 ( ) ,
17
20
DylanLaffertyQuiz . makeQuestion2 ( ) ,
18
21
] ;
22
+
23
+ return [ DylanLaffertyQuiz . makeQuestion0 ( ) , DylanLaffertyQuiz . makeQuestion0 ( ) ] ;
24
+
19
25
}
20
26
21
27
private static makeQuestion0 ( ) : QuizQuestion {
@@ -54,8 +60,9 @@ export class DylanLaffertyQuiz implements QuizQuestionProvider {
54
60
[ AnswerChoice . B , 'SSD' ] ,
55
61
[ AnswerChoice . C , 'GPU' ] ,
56
62
[ AnswerChoice . D , 'RAM' ] ,
57
- ] ) ,
58
63
AnswerChoice . UNANSWERED ,
59
64
) ;
60
65
}
66
+
61
67
}
68
+
You can’t perform that action at this time.
0 commit comments