Skip to content

Commit 1a9cca0

Browse files
authored
Update ambiguous question text
Original text read "each other day", which implies "every other day". If the frog gives double the candy of the previous day, but gives candy "each other day", then day 10 is a 0-candy day. This is incorrect and does not line up with the intent of the question. I have corrected the text to be less ambiguous and represent the actual wording of the question being asked.
1 parent d93090f commit 1a9cca0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/swamp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var swamp = {
3030
text += "\n\n<button id=\"answer\" onClick=\"swamp.setStep(9);\">Next question!</button>";
3131
break;
3232
case 9:
33-
text = speech.makeSpeechFromText("Third question. Consider 10 days. If I give you 1 candy on the first day, and each other day I give you twice more candies than the previous one, how much candies will I give you on the day number 10?", 29, "");
33+
text = speech.makeSpeechFromText("Third question. Consider 10 days. If I give you 1 candy on the first day, and each day I give you twice more candies than the previous day, how much candies will I give you on day number 10?", 29, "");
3434
text += answer_form;
3535
break;
3636
case 10:

0 commit comments

Comments
 (0)