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

题目来源

leetcode

题目描述

1450. 在既定时间做作业的学生人数_第1张图片

题目解析

水题

class Solution {
    public int busyStudent(int[] startTime, int[] endTime, int queryTime) {
        int cnt = 0;
        for (int i = 0; i < startTime.length; i++){
            if ((queryTime >= startTime[i]) && (endTime[i] >= queryTime)){
                cnt++;
            }
        }

        return cnt;
    }
}

在这里插入图片描述

你可能感兴趣的:(1450. 在既定时间做作业的学生人数)