1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-16 16:36:56 +02:00
LeetCode/java/number-of-senior-citizens.java
Matej Focko 649c2f92fa
java: add «2678. Number of Senior Citizens»
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-08-01 11:28:43 +02:00

15 lines
260 B
Java

class Solution {
public int countSeniors(String[] details) {
int count = 0;
for (String citizen : details) {
var age = Integer.parseInt(citizen.substring(11, 13));
if (age > 60) {
++count;
}
}
return count;
}
}