Add note about order of array elements in Diff Two Arrays

pull/18182/head
MANISH-GIRI 2016-11-07 15:01:17 -05:00
parent eb2cc1eca6
commit 2bd094ce8c
1 changed files with 2 additions and 1 deletions

View File

@ -66,7 +66,8 @@
"title": "Diff Two Arrays", "title": "Diff Two Arrays",
"description": [ "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.", "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": [ "challengeSeed": [
"function diffArray(arr1, arr2) {", "function diffArray(arr1, arr2) {",