You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
👋🏽 hi I'd like to take a crack at this problem. I didn't know how you specifically wanted me to submit the code, so I did it the usual way created a clone -> new branch -> main.py file and submitted a pull request.
I would like to work on this issue using python language -Vaishnavi Mahajan.
Cummins college of engineering.(SY)
Can you please assign this issue to me .
Write code in the preferred language and attach output with it.
You are given the arrival and leaving times of n customers in a restaurant.
What was the maximum number of customers in the restaurant at any time?
Input
The first input line has an integer n: the number of customers.
After this, there are n lines that describe the customers. Each line has two integers a and b: the arrival and leaving times of a customer.
You may assume that all arrival and leaving times are distinct.
Output
Print one integer: the maximum number of customers.
Example:
Input:
3
5 8
2 4
3 9
Output: 2
The text was updated successfully, but these errors were encountered: