Number of Employees Who Met the Target — LeetCode 2798 Python Solution

EasyArray
Problem
#2798
Reading time
2 min

The problem

There are n employees in a company, numbered from 0 to n - 1. Each employee i has worked for hours[i] hours in the company.

Example

Input
hours = [0,1,2,3,4], target = 2
Output
3
Explanation
The company wants each employee to work for at least 2 hours.

Python solution

Python
class Solution:
    def numberOfEmployeesWhoMetTarget(self, hours: List[int], target: int) -> int:
        return sum(x >= target for x in hours)

Complexity

MeasureComplexity
TimeO(n), where n is the length of the array hours
SpaceO(1) auxiliary

Related problems

Frequently asked questions

How hard is LeetCode 2798. Number of Employees Who Met the Target?
LeetCode 2798. Number of Employees Who Met the Target is rated Easy on LeetCode.
What is the time complexity of LeetCode 2798. Number of Employees Who Met the Target?
The Python solution on this page runs in O(n), where n is the length of the array hours.
What is the space complexity of LeetCode 2798. Number of Employees Who Met the Target?
The Python solution on this page uses O(1) auxiliary space.
What topics does LeetCode 2798. Number of Employees Who Met the Target cover?
LeetCode 2798. Number of Employees Who Met the Target is tagged Array on LeetCode.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview