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


Ruby Array combination()用法及代碼示例


Array#combination():combination()是一種Array類方法,該方法使用一個塊進行調用,產生塊中所有長度為'n'的組合。

用法: Array.combination()

參數:  Arrays in which we want elements to be invoked

返回: all combinations of length 'n' of elements of the array.

代碼#1:combination()方法示例

# Ruby code for combination() method 
  
# declaring array 
a = [1, 2, 56, 23] 
  
# combination of length 2 
puts "combination a:#{a.combination(2).to_a}\n\n"
  
# combination of length 3 
puts "combination a:#{a.combination(3).to_a}\n\n"

輸出:


combination a:[[1, 2], [1, 56], [1, 23], [2, 56], [2, 23], [56, 23]]

combination a:[[1, 2, 56], [1, 2, 23], [1, 56, 23], [2, 56, 23]]

代碼2:combination()方法示例

# Ruby code for combination() method 
  
# declaring array 
a = [[1, 2, 56, 23], 
    [34, 54, 23, 1]] 
  
# combination of length 2 
puts "collect a:#{a.combination(2).to_a}\n\n"
  
# combination of length 1 
puts "collect a:#{a.combination(1).to_a}\n\n"

輸出:

collect a:[[[1, 2, 56, 23], [34, 54, 23, 1]]]

collect a:[[[1, 2, 56, 23]], [[34, 54, 23, 1]]]



相關用法


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