Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have two ranges that overlap:

x = 1..10
y = 5..15

When I say:

puts x.include? y

the output is:

false

because the two ranges only overlap partially.

But if I want it to be "true" when there is partial overlap between two ranges, how would I write that? In other words I need a way to know when one range contains a subset of another range. I assume there's an elegant way to write this in Ruby but the only solutions I can think of are verbose.

share|improve this question
2  
The output is false because the following is false: x.begin <= y and y <= x.end --- not because they only partially overlap. – Kevin Apr 6 '11 at 21:04

8 Answers

up vote 4 down vote accepted

Be careful using this with large ranges but this is an elegant way to do it:

(x.to_a & y.to_a).empty?
share|improve this answer

The efficient way is to compare the limits

(x.first <= y.last) and (y.first <= x.last)
share|improve this answer
Why is this more efficient than converting to an array? Does converting to an array use a lot of resources? – Chris Mar 30 '09 at 23:34
Okay, this is way better than mine! – Angela Mar 30 '09 at 23:41
Converting it to an array makes an array and fills it with values, then does the same for the second array, then searches the two arrays for matching items. set x = 10000000..20000000 and y = 30000000..40000000 and time the two methods to see what I mean. – MarkusQ Mar 30 '09 at 23:42
You can obtain a calling style as in the question by extending Range like this, to give puts x.overlaps? y and get true – dukedave Dec 5 '12 at 1:10

If you're checking for overlap, then I'd just do

(x.include? y.first) or (x.include? y.last)

as one range will have to include at least one of the ends of the other. This is more intuitive to me than the accepted conjuction answer, though not quite as efficient as MarkusQ's limit comparison.

share|improve this answer
This only covers the case where they partially overlap. Given x = 3..6 and y = 1..10, your code would return false, but the two ranges do indeed overlap. – jasonkarns Jan 6 at 14:42

If a range includes either the beginning or the end of a second range, then they overlap.

(x === y.first) or (x === y.last)

is the same as this:

x.include?(y.first) or x.include?(y.last)
share|improve this answer
See my comment to see why that's not true. – jasonkarns Jan 6 at 14:44

But if I want it to be "true" when there is partial overlap between two ranges, how would I write that?

You can convert the ranges to an array, and use the & operator (conjunction). This returns a new array with all the elements occuring in both arrays. If the resulting array is not empty, that means, that there are some overlapping elements:

def overlap?(range_1, range_2)
  !(range_1.to_a & range_2.to_a).empty?
end
share|improve this answer
This seems like the most intuitive solution. – Chris Mar 31 '09 at 16:32
1  
@Chris -- It may be "the most intuitive" but 1) it's ridiculously inefficient and 2) it only works on integer ranges, so I wouldn't advise using it. – MarkusQ Mar 31 '09 at 18:15

This method can be used to test overlap between multiple ranges in an efficient way:

def range_overlap?(ranges)
  sorted_ranges = ranges.sort
  sorted_ranges.each_cons(2).each do |r1, r2|
    return true if r2.first <= r1.last
  end
  return false
end


def test(r)
  puts r.inspect, range_overlap?(r)
  puts '================'
  r = r.reverse
  puts r.inspect, range_overlap?(r)
  puts '================'
end


test [[1,9], [10, 33]]
test [[1,10], [5, 8]]
test [[1,10], [10, 33]]
share|improve this answer

You could also convert the ranges to sets, since you're basically doing set intersection here. Might be easier if you are dealing with more than two ranges.

x = (1..10).to_set
y = (5..15).to_set
!(x & y).empty? #returns true (true == overlap, false == no overlap)
share|improve this answer

Some helpful enumerable methods:

# x is a 'subset' of y
x.all?{|n| y.include? n}
# x and y overlap
x.any?{|n| y.include? n}
# x and y do not overlap
x.none?{|n| y.include? n}
# x and y overlap one time
x.one?{|n| y.include? n}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.