diff --git a/challenges/intermediate-bonfires.json b/challenges/intermediate-bonfires.json index e4811bcb1c..80adf23020 100644 --- a/challenges/intermediate-bonfires.json +++ b/challenges/intermediate-bonfires.json @@ -228,9 +228,11 @@ ], "difficulty": "2.05", "description": [ - "The DNA strand is missing the pairing element. Match each character with the missing element and return the results as a 2d array.", + "The DNA strand is missing the pairing element. Take each character, get its pair, and return the results as a 2d array.", "Base pairs are a pair of AT and CG. Match the missing element to the provided character.", "Return the provided character as the first element in each array.", + "For example, for the input GCG, return [['G', 'C'], ['C','G'],['G', 'C']]", + "The charater and its pair are paired up in an array, and all the arrays are grouped into one encapsulating array.", "Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code." ], "challengeSeed": [