-1
這是我正在處理的腳本的一部分,它肯定會返回並排列數組,但我希望得到的結果是[[:a, :c].to_set,[:b,:c].to_set].to_set
而不是[[:c, :b], [:c, :a]]
。數組返回子集
@potentially_alive = Array.new
if (self_defended?(s))
@potentially_alive.delete_if { |pa| pa.subset?(s.to_set)}
@potentially_alive.push(s.to_set)
end
對不起,這種解決方案將取代哪裏 – 2012-02-24 10:01:01