Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chatasweetie/923a180bd9da02ded5789019974eb4d8 to your computer and use it in GitHub Desktop.
Save chatasweetie/923a180bd9da02ded5789019974eb4d8 to your computer and use it in GitHub Desktop.
// 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