Given two events with integer start and end times, E1 = (s1, e1), E2 = (s2, e2), implement a quick boolean check to see if the events overlap.
I have the solution, but I'm curious to see what others come up with.
EDIT: OK, here's my solution:
e1 > s2 || (s1 > s2 && e2 < s1)
e1 > s2is incorrect ifs1 > s2as well. – BalusC Jan 17 '11 at 21:29