Skip to content

Commit 685adea

Browse files
committed
random
1 parent 9d13b7d commit 685adea

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed

lesson_03/quiz/quiz.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ quiz:
1414
- $2y$10$hRwUbEYSqz761B.cG79T2uYsYPiEtKu.JgD3Aj7.Mofx27TtX5YHa
1515
- $2y$10$qE/gXxpq62FEGJOJd9MDA.vpDYLTNSsZbqZLpD/0368CKkcNBzW1y
1616
- $2y$10$yI/2BgOyqQfLdHM3ixPE5uLu89su/sHRJB2c5szDFIAYXDhRakS.C
17+
DavisDarius:
18+
- $2y$10$yMJb1Jq0KavCZA6FlPzcbeTAcvnngH1dH.LwfvOHUIZxeiL8Y8B2C
19+
- $2y$10$wjDnHllQW16n/Pgr3nM2PeP5mlUeTjDWWCH5vOFtDEoJ7I2ltluQC
20+
- $2y$10$vNFRGJtBXdsZj7Uheaf5y.ck8UhScBkHbMAwVacrETF2WEYOfbPlK

lesson_03/quiz/src/quizzes/Davis_D._quiz.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,4 @@ export class DavisQuiz implements QuizQuestionProvider {
5858
AnswerChoice.UNANSWERED,
5959
); // Provide an answer.
6060
}
61-
62-
private static makeQuestion3(): QuizQuestion {
63-
return new MultipleChoiceQuizQuestion(
64-
3,
65-
'If we flip a coin...?',
66-
new Map<AnswerChoice, string>([
67-
[AnswerChoice.A, 'Heads'],
68-
[AnswerChoice.B, 'Tails'],
69-
]),
70-
AnswerChoice.UNANSWERED,
71-
); // Replace `UNANSWERED` with the correct answer.
72-
}
7361
}

lesson_03/quiz/src/quizzes/quizzes.module.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { AnthonyMaysQuiz } from './anthony_mays_quiz.js';
44
import { DavisQuiz } from './Davis_D._quiz.js';
55
import { Jbeyquiz } from './jbeyquiz.js';
66
import { MercedesMathewsQuiz } from './mercedes_mathews_quiz.js';
7-
87
export const Quizzes = Symbol.for('Quizzes');
98

109
// Add your quiz provider here.
@@ -13,7 +12,7 @@ const QUIZ_PROVIDERS = [
1312
AnotherQuiz,
1413
MercedesMathewsQuiz,
1514
Jbeyquiz,
16-
DavisDQuiz,
15+
DavisQuiz,
1716
];
1817

1918
@Module({

0 commit comments

Comments
 (0)