您的当前位置:首页正文

2798. 满足目标工作时长的员工数目 力扣最水题

2024-11-29 来源:个人技术集锦

最水题

    public int numberOfEmployeesWhoMetTarget(int[] hours, int target) {
        int userIndex = 0;
        for(int i = 0 ; i < hours.length ; i++){
            if(hours[i] >= target){
               userIndex++; 
            }
        }
        return userIndex;
    }

显示全文