Skip to content
Advertisement

built in function for computing overlap in Python

is there a built in function to compute the overlap between two discrete intervals, e.g. the overlap between [10, 15] and [20, 38]? In that case the overlap is 0. If it’s [10, 20], [15, 20], the overlap is 5.

Advertisement

Answer

You can use max and min:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement