Merge pull request #11572 from Manish-Giri/fix/include-note-in-diff-two-arrays-challenge

Add note about order of array elements in Diff Two Arrays
This commit is contained in:
Jonathan 2016-11-08 08:16:27 +00:00 committed by GitHub
commit bf8300fcc5

View File

@ -66,7 +66,8 @@
"title": "Diff Two Arrays",
"description": [
"Compare two arrays and return a new array with any items only found in one of the two given arrays, but not both. In other words, return the symmetric difference of the two arrays.",
"Remember to use <a href='http://forum.freecodecamp.com/t/how-to-get-help-when-you-are-stuck/19514' target='_blank'>Read-Search-Ask</a> if you get stuck. Try to pair program. Write your own code."
"Remember to use <a href='http://forum.freecodecamp.com/t/how-to-get-help-when-you-are-stuck/19514' target='_blank'>Read-Search-Ask</a> if you get stuck. Try to pair program. Write your own code.",
"<strong>Note</strong><br>You can return the array with its elements in any order."
],
"challengeSeed": [
"function diffArray(arr1, arr2) {",