Help on algorythm

Guys i have been trying to make this algorythm but with no sucess, can
you help me out ?

The problem is the follow

for the following numberset like 1,2,3,4,5,6,7,8,9,10,11,12 i need to
take all the five number combinations, six number combinations and the
seven number combinations, this cant be “hardcoded”, this need to be
flexible because at any time i may need all the 3 number combinations
and later i may need numbersets of 15 or even more.

Need a little help with this guys :slight_smile:

Note: this is not for a school work or project :slight_smile:

On Tue, Dec 9, 2008 at 7:44 AM, Helder O.
[email protected]wrote:

Need a little help with this guys :slight_smile:

Note: this is not for a school work or project :slight_smile:

Posted via http://www.ruby-forum.com/.

http://www.google.com/search?hl=en&q=Ruby+permutations&btnG=Google+Search&aq=f&oq=


“Hey brother Christian with your high and mighty errand, Your actions
speak
so loud, I can’t hear a word you’re saying.”

-Greg Graffin (Bad Religion)

On Tue, Dec 9, 2008 at 9:56 AM, Glen H. [email protected]
wrote:

Ruby permutations - Google Search

Oh come on, we can do better than that:
http://tinyurl.com/57769d


Technical Blaag at: http://blog.majesticseacreature.com
Non-tech stuff at: http://metametta.blogspot.com
“Ruby Best Practices” Book now in O’Reilly Roughcuts:
http://rubybestpractices.com

ok ok,
sorry guys for the question, and thanks for the replys :wink:

On Tue, Dec 9, 2008 at 4:08 PM, Gregory B.
[email protected] wrote:

On Tue, Dec 9, 2008 at 9:56 AM, Glen H. [email protected] wrote:

Ruby permutations - Google Search

Oh come on, we can do better than that:
http://tinyurl.com/57769d
and who is going to click on the links for me? Read the stuff? and
explain it to me?

On Tue, Dec 9, 2008 at 4:24 PM, Chris L. [email protected]
wrote:

Gregory B. wrote:

Oh come on, we can do better than that:
http://tinyurl.com/57769d

Of course, this assumes that one knows the meaning of the English word
Permutations. I’m not sure if this was the case or not with the original
poster, perhaps he wasn’t simply being lazy :slight_smile: !
Oh he did not ask for permutations, he asked for combinations, are we
being unfriendly?
R.


Il computer non è una macchina intelligente che aiuta le persone
stupide, anzi, è una macchina stupida che funziona solo nelle mani
delle persone intelligenti.
Computers are not smart to help stupid people, rather they are stupid
and will work only if taken care of by smart people.

Umberto Eco

On Tue, Dec 9, 2008 at 8:08 AM, Gregory B.
[email protected] wrote:

On Tue, Dec 9, 2008 at 9:56 AM, Glen H. [email protected] wrote:

Ruby permutations - Google Search

Oh come on, we can do better than that:
http://tinyurl.com/57769d

Gregory, I can’t believe you’d use some url shortener of questionable
language choices, surely http://rubyurl.com/ltJs is a better option.

Gregory B. wrote:

Oh come on, we can do better than that:
http://tinyurl.com/57769d

Of course, this assumes that one knows the meaning of the English word
Permutations. I’m not sure if this was the case or not with the original
poster, perhaps he wasn’t simply being lazy :slight_smile: !

Chris

On Tue, Dec 9, 2008 at 8:33 AM, Robert D. [email protected]
wrote:

R.

Good point he didn’t specifically state that position mattered and did
actually say combination, oh well my bad :wink:


“Hey brother Christian with your high and mighty errand, Your actions
speak
so loud, I can’t hear a word you’re saying.”

-Greg Graffin (Bad Religion)

On Dec 9, 2008, at 9:29 AM, pat eyler wrote:

Gregory, I can’t believe you’d use some url shortener of questionable
language choices, surely http://rubyurl.com/ltJs is a better option.

The hilarious site Greg used has the other option built-in. :frowning: We
should lobby them for RubyURL support.

James Edward G. II

On Tue, 09 Dec 2008 09:44:23 -0500, Helder O. wrote:

Need a little help with this guys :slight_smile:

Note: this is not for a school work or project :slight_smile:

In Ruby 1.8.7

numberset=(1…12).to_a

(5…7).each do |combination_size|
numberset.combination(combination_size).do_something_with_it
end

On Tue, Dec 9, 2008 at 6:34 PM, Chris L. [email protected]
wrote:

Ai ges U R rite ;).
Indeed I think you made a good point.
R.

Oh he did not ask for permutations, he asked for combinations, are we
being unfriendly?

No, not at all. I was simply making the observation that selecting the
correct (often English due to the availability of material in that
language) word can open a goldmine of results in Google searches.
Sometimes all one can do is explain a concept, because one doesn’t have
the vocabulary to reduce it to a single, searchable word.

At least, that’s been my experience with the non-native languages I
speak poorly, and I’m counting mathematics as one of those languages
here!

Chris