func numberOfEmployeesWhoMetTarget(hours []int, target int) int { var ans int for _, hour := range hours { if hour >= target { ans++ } } return ans }