Skip to content

Instantly share code, notes, and snippets.

@jewel12
Created February 24, 2011 01:20
Show Gist options
  • Save jewel12/841567 to your computer and use it in GitHub Desktop.
Save jewel12/841567 to your computer and use it in GitHub Desktop.
順序を保持した組み合わせ
# -*- coding: utf-8 -*-
class Array
def comb
n = self.length - 1
0.upto(n) do |head_n|
head_n.upto(n) {|tail_n| yield self[head_n..tail_n] }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment