美文网首页
FCC-Sorted Union

FCC-Sorted Union

作者: zooeydotmango | 来源:发表于2017-11-20 17:08 被阅读0次

    写一个 function,传入两个或两个以上的数组,返回一个以给定的原始数组排序的不包含重复值的新数组。
    换句话说,所有数组中的所有值都应该以原始顺序被包含在内,但是在最终的数组中不包含重复值。
    非重复的数字应该以它们原始的顺序排序,但最终的数组不应该以数字顺序排序。
    unite([1, 3, 2], [5, 2, 1, 4], [2, 1]) 应该返回 [1, 3, 2, 5, 4]。
    unite([1, 3, 2], [1, [5]], [2, [4]]) 应该返回 [1, 3, 2, [5], [4]]。
    unite([1, 2, 3], [5, 2, 1]) 应该返回 [1, 2, 3, 5]。
    unite([1, 2, 3], [5, 2, 1, 4], [2, 1], [6, 7, 8]) 应该返回 [1, 2, 3, 5, 4, 6, 7, 8]。

    思路很清晰,合并数组-遍历数组留下不同的值

    function unite(arr1, arr2, arr3) {
      var args =Array.prototype.slice.call(arguments).reduce(function(a,b){return a.concat(b);});
      var result=[];
      args.map(function(num){
        if(result.indexOf(num) == -1){
          result.push(num);
        }
      });
      return result;
    }
    unite([1, 3, 2], [1, [5]], [2, [4]]);
    

    遍历数组我使用的是map,用filter也可以

    return args.filter(function(item,index,array){
        return arr.indexOf(item) === index;
      });
    

    相关文章

      网友评论

          本文标题:FCC-Sorted Union

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