Updated the MatchSentences exercise to work better now
This commit is contained in:
@@ -233,17 +233,21 @@ export interface MatchSentencesExercise {
|
||||
id: string;
|
||||
prompt: string;
|
||||
userSolutions: {question: string; option: string}[];
|
||||
sentences: {
|
||||
id: string;
|
||||
sentence: string;
|
||||
solution: string;
|
||||
color: string;
|
||||
}[];
|
||||
sentences: MatchSentenceExerciseSentence[];
|
||||
allowRepetition: boolean;
|
||||
options: {
|
||||
id: string;
|
||||
sentence: string;
|
||||
}[];
|
||||
options: MatchSentenceExerciseOption[];
|
||||
}
|
||||
|
||||
export interface MatchSentenceExerciseSentence {
|
||||
id: string;
|
||||
sentence: string;
|
||||
solution: string;
|
||||
color: string;
|
||||
}
|
||||
|
||||
export interface MatchSentenceExerciseOption {
|
||||
id: string;
|
||||
sentence: string;
|
||||
}
|
||||
|
||||
export interface MultipleChoiceExercise {
|
||||
|
||||
Reference in New Issue
Block a user