美文网首页
Diff Two Arrays

Diff Two Arrays

作者: dma_master | 来源:发表于2017-08-08 06:47 被阅读14次

题目

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 Read-Search-Ask if you get stuck. Try to pair program. Write your own code.

Here are some helpful links:
Comparison Operators

Array.prototype.slice()

Array.prototype.filter()

Array.prototype.indexOf()

Array.prototype.concat()

given code

function diffArray(arr1, arr2) {
  var newArr = [];
  // Same, same; but different.
  return newArr;
}
diffArray([1, 2, 3, 5], [1, 2, 3, 4, 5]);
  • 遍历arr1
  • 在遍历arr1的时候遍历arr2。比较两个元素是否全等。如果全等,那么两个元素的下标都加一,如果不等,则把

相关文章

  • Diff Two Arrays

    比较两个数组,然后返回一个新数组,该数组的元素为两个给定数组中所有独有的数组元素。换言之,返回两个数组的差异。

  • Diff Two Arrays

    题目 Compare two arrays and return a new array with any ite...

  • Diff Two Arrays - freeCodeCamp

    比较两个数组,然后返回一个新数组,该数组的元素为两个给定数组中所有独有的数组元素。换言之,返回两个数组的差异。 这...

  • FCC 题目 Diff Two Arrays

    题目要求 比较两个数组,然后返回一个新数组,该数组的元素为两个给定数组中所有独有的数组元素。换言之,返回两个数组的...

  • FCC之Diff Two Arrays

    最近开始跟着FreeCodeCamp自学js,因为之前Android开发过程中经常接触前端内容,感觉上面的学习节奏...

  • (待完成)LeetCode - 4

    Median of Two Sorted Arrays There are two sorted arrays n...

  • 350. Intersection of Two Arrays

    Intersection of Two Arrays IIGiven two arrays, write a fu...

  • LeetCode Problem No.4

    Median of Two Sorted Arrays There are two sorted arrays n...

  • 004- Median of Two Sorted Arrays

    Median of Two Sorted Arrays There are two sorted arrays n...

  • leetcode4

    Median of Two Sorted Arrays There are two sorted arrays n...

网友评论

      本文标题:Diff Two Arrays

      本文链接:https://www.haomeiwen.com/subject/omidsttx.html