scala – 从一个列表中提取不在另一个列表中的元素
发布时间:2020-12-16 18:27:38 所属栏目:安全 来源:网络整理
导读:简单地说,我有两个列表,我需要提取添加到其中一个的新元素. 我有以下内容 val x = List(1,2,3)val y = List(1,4)val existing :List[Int]= x.map(xInstance = { if (!y.exists(yInstance = yInstance == xInstance)) xInstance })Result :existing: List[Any
简单地说,我有两个列表,我需要提取添加到其中一个的新元素.
我有以下内容 val x = List(1,2,3) val y = List(1,4) val existing :List[Int]= x.map(xInstance => { if (!y.exists(yInstance => yInstance == xInstance)) xInstance }) Result :existing: List[AnyVal] = List((),(),3) 我需要以最低成本删除除数字之外的所有其他元素. 解决方法
简单的方法是使用
filter,因此没有什么可以删除;
val existing :List[Int] = x.filter(xInstance => !y.exists(yInstance => yInstance == xInstance)) (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |