Loading... > https://leetcode.cn/problems/number-of-employees-who-met-the-target/description/?envType=daily-question&envId=2024-04-07 简单题中的简单题,遍历判断即可。 ```c++ class Solution { public: int numberOfEmployeesWhoMetTarget(vector<int>& hours, int target) { int res = 0; for (const auto &hour : hours) { if (hour >= target) ++res; } return res; } }; ``` - 时间复杂度 $O(n)$ ,其中 $n$ 为 $hour$ 数组的长度。 - 空间复杂度 $O(1)$ 。 最后修改:2024 年 05 月 06 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏