📜  红宝石 |设置proper_subset?()函数

📅  最后修改于: 2022-05-13 01:54:28.473000             🧑  作者: Mango

红宝石 |设置proper_subset?()函数

正确的子集?是 Ruby 中的一个内置方法,如果一个集合是另一个集合的真子集,则返回 true。如果它不是真子集,则返回 false。

示例 1

# Ruby program to illustrate the proper_subset? method 
   
# requires the set 
require "set"
   
s1 = Set[1, 2]
s2 = Set[1, 2, 3] 
   
# proper_subset method used  
puts s1.proper_subset?(s2)

输出

true

示例 2

# Ruby program to illustrate the proper_subset? method 
   
# requires the set 
require "set"
   
s1 = Set[1, 5]
s2 = Set[1, 2, 3] 
   
# proper_subset? method used  
puts s1.proper_subset?(s2)

输出

false