1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-16 16:36:56 +02:00

java: add «2678. Number of Senior Citizens»

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2024-08-01 11:28:43 +02:00
parent adcfcd4d91
commit 649c2f92fa
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -0,0 +1,15 @@
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;
}
}