Added a solutions for the WriteBlanks exercise

This commit is contained in:
Tiago Ribeiro
2023-04-10 16:54:13 +01:00
parent 06dbf1e5f6
commit 45a5cb0f5c
2 changed files with 102 additions and 2 deletions

View File

@@ -60,6 +60,10 @@ export interface WriteBlanksExercise {
id: string; // *EXAMPLE: "14"
solution: string[]; // *EXAMPLE: ["Prescott"] - All possible solutions (case sensitive)
}[];
userSolutions: {
id: string;
solution: string;
}[];
}
export interface MatchSentencesExercise {