File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
lesson_03/quiz/src/quizzes Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 1-
21import {
3-
42 AnswerChoice ,
53 MultipleChoiceQuizQuestion ,
64 QuizQuestion ,
75 QuizQuestionProvider ,
86} from 'codedifferently-instructional' ;
97
10-
118export class DylanLaffertyQuiz implements QuizQuestionProvider {
129 getProviderName ( ) : string {
1310 return 'dylanlafferty' ;
1411 }
1512
1613 makeQuizQuestions ( ) : QuizQuestion [ ] {
17-
1814 return [
1915 DylanLaffertyQuiz . makeQuestion0 ( ) ,
2016 DylanLaffertyQuiz . makeQuestion1 ( ) ,
2117 DylanLaffertyQuiz . makeQuestion2 ( ) ,
2218 ] ;
2319
24- return [ DylanLaffertyQuiz . makeQuestion0 ( ) , DylanLaffertyQuiz . makeQuestion0 ( ) ] ;
20+ return [
21+ DylanLaffertyQuiz . makeQuestion0 ( ) ,
22+ DylanLaffertyQuiz . makeQuestion0 ( ) ,
23+ ] ;
2524 }
2625
2726 private static makeQuestion0 ( ) : QuizQuestion {
@@ -60,8 +59,8 @@ export class DylanLaffertyQuiz implements QuizQuestionProvider {
6059 [ AnswerChoice . B , 'SSD' ] ,
6160 [ AnswerChoice . C , 'GPU' ] ,
6261 [ AnswerChoice . D , 'RAM' ] ,
62+ ] ) ,
6363 AnswerChoice . UNANSWERED ,
6464 ) ;
6565 }
6666}
67-
You can’t perform that action at this time.
0 commit comments