This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// responses.js | |
beginnerChallenges = [ | |
{ | |
'problemName': 'matching_parens', | |
'text': 'Write the function …', | |
'speech': '<speak> Write the function…', | |
'hintText': 'If you remove all the letters…', | |
'hintSpeech': '<speak> If you remove all the letters…', | |
}, | |
... | |
]; | |
intermediateChallenges = [ | |
{ | |
'problemName': 'count_vowels_in_file', | |
'text': 'Write the function …', | |
'speech': '<speak> Write the function…', | |
'hintText': 'If you remove all the letters…', | |
'hintSpeech': '<speak> If you remove all the letters…', | |
}, | |
... | |
]; | |
advanceChallenges = [ | |
{ | |
'problemName': 'friend_suggestions', | |
'text': 'Write the function …', | |
'speech': '<speak> Write the function…', | |
'hintText': 'If you remove all the letters…', | |
'hintSpeech': '<speak> If you remove all the letters…', | |
}, | |
... | |
]; | |
exports.challenges = { | |
'easy': beginnerChallenges, | |
'medium': intermediateChallenges, | |
'hard': advanceChallenges, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment