This commit is contained in:
2026-05-23 20:29:33 +05:00
parent 8fd749fe9e
commit 9d30fc897c
6 changed files with 60 additions and 0 deletions

8
solutions/lc2678.py Normal file
View File

@@ -0,0 +1,8 @@
class Solution:
def countSeniors(self, details: List[str]) -> int:
total = 0
for i in details:
if int(i[11:13]) > 60:
total += 1
return total