Sorted Union

Posted 梦如影

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sorted Union相关的知识,希望对你有一定的参考价值。

function unite(arr1, arr2, arr3) {
  //return arr1;
  var args = Array.from(arguments);
  var arr = args.reduce(function(pre,cur,index,array){
    return pre.concat(cur);
  });
  return arr.filter(function(item,index,array){
    return arr.indexOf(item) === index;
  });
}

unite([1, 3, 2], [5, 2, 1, 4], [2, 1]);

  

以上是关于Sorted Union的主要内容,如果未能解决你的问题,请参考以下文章

FCC-学习笔记 Sorted Union

Microsoft - Union Two Sorted List with Distinct Value

Union and Intersection of two sorted list

java8 .stream().sorted().filter().map().collect()用法

关于MySQL的关联查询

python 代码题07 sorted函数