1450. Number of Students Doing Homework at a Given Time ¶ Time: Space: C++ 1 2 3 4 5 6 7 8 9 10 11 12 13class Solution { public: int busyStudent(vector<int>& startTime, vector<int>& endTime, int queryTime) { const int n = startTime.size(); int ans = 0; for (int i = 0; i < n; ++i) if (startTime[i] <= queryTime && queryTime <= endTime[i]) ++ans; return ans; } };