當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Set subset?用法及代碼示例


如果集合是給定集合的子集,則子集?()是Ruby中的內置方法,返回true。

用法:s1_name.subset?(s2_name)

參數:該函數帶有一個強製參數,該參數是ch


返回值:返回自己。

例子1

# Ruby program to illustrate  
# the subset?() method  
   
# requires the set  
require "set"
   
s1 = Set[2, 12, 78, 10, 87, 98]  
s2 = Set[2, 10, 87] 
   
# reset method used  
puts s2.subset?(s1)

輸出

true

例子2

# Ruby program to illustrate  
# the subset?() method  
   
# requires the set  
require "set"
   
s1 = Set[2, 12, 78, 10, 87, 98]  
s2 = Set[1, 2, 3] 
   
# reset method used  
puts s2.subset?(s1)

輸出

false


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Set subset? function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。