Lc5412._在既定时间做作业的学生人数

### 解题思路
此处撰写解题思路
在几个数组之间找对应值
### 代码

```java
class Solution {
    public int busyStudent(int[] startTime, int[] endTime, int queryTime) {
 int count = 0;
        for(int i = 0;i<startTime.length;i++){
            for (int start = startTime[i];start<=endTime[i];start++){
                if(queryTime==start){
                    count++;
                    break;
                }
            }
        }
        return count;
    }
}
```

L

posted @ 2020-05-17 12:26  小傻孩丶儿  阅读(97)  评论(0编辑  收藏  举报