Skip to content

Commit 69bd501

Browse files
committed
fix: Encoding
1 parent bc45d7a commit 69bd501

File tree

2 files changed

+7
-19
lines changed

2 files changed

+7
-19
lines changed

lesson_03/quiz/quiz.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,11 @@ quiz:
1414
- $2y$10$hRwUbEYSqz761B.cG79T2uYsYPiEtKu.JgD3Aj7.Mofx27TtX5YHa
1515
- $2y$10$qE/gXxpq62FEGJOJd9MDA.vpDYLTNSsZbqZLpD/0368CKkcNBzW1y
1616
- $2y$10$yI/2BgOyqQfLdHM3ixPE5uLu89su/sHRJB2c5szDFIAYXDhRakS.C
17+
rmill:
18+
- $2y$10$FquR69q7W4E68TX/SNCB7u8Ri0DOFRDqsUPdGfuyIBjZJRVFkNI.6
19+
- $2y$10$FSWRA7hulVpyVxd8s67Nxuq/1cdmviW24qqoUbqihBf79cR.w9yly
20+
- $2y$10$Qy1IsNsfuJvA384ypL/72uWubUuNbMRp4LD6j/LM0RIH66D/HIjF6
1721
evanphilakhong:
18-
- $2y$10$jPemAebScV6nhwb4gjCmyu/1ZfDaCTdjZvDk2Mf/ASO3NhpK0Zikm
19-
- $2y$10$EgDoBI4YWx7i8W6m74OQ/.peaijZ.PGPUUTR.5I4dNlRT.xo17yTm
20-
- $2y$10$KRwSNIERrR6Zc1EoxvGoKu0wEzoKcT93gZyZLcIxcbDj/An3aazY6
21-
- $2y$10$jdfCYoBCrarAT/ZBLI.5/utzDkMjX5kOc5aVvn3Z09x5iCM6TR//O
22+
- $2y$10$3ERfjtWq6bYipHm0QGOuDe8oeXth3dnmfxT8g5P65sc8m4EivQNY.
23+
- $2y$10$cr3WSpMx9zljgMYCqz4uYOAMT2iOzDaRsnoQi6CfPu/761F.1EpwW
24+
- $2y$10$us8POdRzHVBFr1wNcuC7iuDg/YsQvr0GXe5JpFg8EIWzc6IMnIEUG

lesson_03/quiz/src/quizzes/evan_philakhong_quiz.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ export class EvanPhilakhongQuiz implements QuizQuestionProvider {
1515
EvanPhilakhongQuiz.makeQuestion0(),
1616
EvanPhilakhongQuiz.makeQuestion1(),
1717
EvanPhilakhongQuiz.makeQuestion2(),
18-
EvanPhilakhongQuiz.makeQuestion3(),
1918
];
2019
}
2120

@@ -60,18 +59,4 @@ export class EvanPhilakhongQuiz implements QuizQuestionProvider {
6059
AnswerChoice.UNANSWERED, // repleace UNANSWERED with correct answer
6160
);
6261
}
63-
64-
private static makeQuestion3(): QuizQuestion {
65-
return new MultipleChoiceQuizQuestion(
66-
3,
67-
'RAM is short for ___?',
68-
new Map<AnswerChoice, string>([
69-
[AnswerChoice.A, 'Randomly Advanced Memory'],
70-
[AnswerChoice.B, 'Random Access Memory'],
71-
[AnswerChoice.C, 'Temporary Memory'],
72-
[AnswerChoice.D, 'Readlily Access Memory'],
73-
]),
74-
AnswerChoice.UNANSWERED, // replace UNANSWERED with correct answer
75-
);
76-
}
7762
}

0 commit comments

Comments
 (0)