// 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