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
不恋尘世浮华,不写红尘纷扰