diff --git a/Array/2798. Number of Employees Who Met the Target.py b/Array/2798. Number of Employees Who Met the Target.py deleted file mode 100644 index cdcfc78..0000000 --- a/Array/2798. Number of Employees Who Met the Target.py +++ /dev/null @@ -1,10 +0,0 @@ -from typing import List - - -class Solution: - def numberOfEmployeesWhoMetTarget(self, hours: List[int], target: int) -> int: - res = 0 - for hour in hours: - if hour >= target: - res += 1 - return res