Add note about order of array elements in Diff Two Arrays

This commit is contained in:
MANISH-GIRI
2016-11-07 15:01:17 -05:00
parent 718cb16e43
commit 55b9569c50

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) {",