You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package cap3
|
|
|
|
func Ex25(studentScore [][]int) int {
|
|
studentCount := 0
|
|
for _, scores := range studentScore {
|
|
scoreCount := 0
|
|
for _, score := range scores {
|
|
if score >= 90 {
|
|
scoreCount++
|
|
}
|
|
|
|
if scoreCount > 3 {
|
|
studentCount++
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
return studentCount
|
|
}
|
|
|