最水题
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;
}