Daily LeetCode – day0021 1450. Number of Students Doing Homework at a Given Time

// 1450. Number of Students Doing Homework at a Given Time
class Solution {
    public int busyStudent(int[] startTime, int[] endTime, int queryTime) {
        int ans = 0;
        for (int i = 0; i < startTime.length; ++i) {
            if (startTime[i] <= queryTime && endTime[i] >= queryTime) {
                ++ans;
            }
        }
        return ans;
    }
}
学习笔记:
这是一道超级大水题,就一个for循环里面有个if就没了,三分钟写完。


关于樊轶群

一个善良的理想主义者。
此条目发表在每日LeetCode分类目录。将固定链接加入收藏夹。

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注