Tagged Questions
0
votes
5answers
81 views
Combining arrays without product method
I have two arrays
a = [1,2,3,4]
b = [a,b,c,d,e,f]
that I need to combine to create:
c = [[1,a],[1,b],[1,c],[1,d],[1,e],[1,f],[2,a],[2,b],...]
I would use the product method with Ruby version ...
3
votes
3answers
280 views
Difference in `Array#to_s` in Ruby 1.8 and Ruby 1.9 [duplicate]
Possible Duplicate:
Ruby 1.9 Array.to_s behaves differently?
I wonder if anyone can tell me what changed between Ruby 1.8.7 and Ruby 1.9.3. I have an example listed below that behaves ...
1
vote
2answers
528 views
Array#uniq with block equivalent in Ruby 1.8.7
Array#uniq has this behaviour in Ruby 1.9
c = [ "a:def", "a:xyz", "b:abc", "b:xyz", "c:jkl" ]
c.uniq {|s| s[/^\w+/]} #=> [ "a:def", "b:abc", "c:jkl" ]
It can take a block and give unique value ...