1450. Number of Students Doing Homework at a Given Time
Easy
Given two integer arrays startTime
and endTime
and given an integer queryTime
.
The ith
student started doing their homework at the time startTime[i]
and finished it at time endTime[i]
.
Return the number of students doing their homework at time queryTime
. More formally, return the number of students where queryTime
lays in the interval [startTime[i], endTime[i]]
inclusive.
Example 1:
Example 2:
Constraints:
startTime.length == endTime.length
1 <= startTime.length <= 100
1 <= startTime[i] <= endTime[i] <= 1000
1 <= queryTime <= 1000
解題
Previous1448. Count Good Nodes in Binary TreeNext1455. Check If a Word Occurs As a Prefix of Any Word in a Sentence
Last updated