Consider a system that manages events represented by time intervals. Each event is given as a pair of integers (start, end) where the start time is inclusive and the end time is exclusive. Your task is to write a function that takes a list of events and returns:
A boolean indicating whether any events conflict with each other (i.e., if any two events overlap).
The maximum number of events that are overlapping at any point in time.
For example, given the events:
[(1, 4), (2, 5), (7, 9)]
Your function should return (true, 2)
because there is an overlap between the first two events, and the maximum number of concurrent events is 2.
Additional considerations:
Implement your solution in a programming language of your choice.