mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
11 lines
192 B
Swift
11 lines
192 B
Swift
let individualScores = [75, 43, 103, 87, 12]
|
|
var teamScore = 0
|
|
for score in individualScores {
|
|
if score > 50 {
|
|
teamScore += 3
|
|
} else {
|
|
teamScore += 1
|
|
}
|
|
}
|
|
teamScore
|