每日一题 2678. 老人的数目(简单)

每日一题 2678. 老人的数目(简单)_第1张图片
简单题,不多说

class Solution:
    def countSeniors(self, details: List[str]) -> int:
        ans = 0
        for l in details:
            if int(l[11:13]) > 60:
                ans += 1

        return ans

你可能感兴趣的:(用Python刷力扣,算法,leetcode,python)