You are given an array of events, where each event is represented as a tuple (or an object) containing a start time and an end time. Your task is to write a program that computes the minimum number of conference rooms required to schedule all the events such that no two events in the same room overlap in time.
For example, consider the following events:
Your program should determine that at least 2 rooms are needed to accommodate these events.
Requirements:
Write a complete program or function in your preferred programming language that solves the problem as described.