Ruby 集合 intersection()函数
intersection() 是Ruby中的一个内置方法,它返回一个包含两个集合中共同元素的集合。如果没有共同元素,它将返回一个空集。
语法 :s1.name.intersection(s2.name)
参数 :该函数不需要任何参数。
返回值 : 它返回一个新的集合,其中包含两个集合中的共同元素。
例子 1 :
# Ruby program to illustrate the intersection method
# requires the set
require "set"
s1 = Set[1, 2, 4]
s2 = Set[1, 2, 3]
# intersection method used
s3 = s1.intersection(s2)
# Prints the s3
puts s3
输出:
Set: {1, 2}
例2 :
# Ruby program to illustrate the intersection method
# requires the set
require "set"
s1 = Set[1, 2, 4]
s2 = Set[6, 5, 3]
# method used
s3 = s1.intersection(s2)
# Prints the s3
puts s3
输出:
<Set: {}