摘要: 860.柠檬水找零 class Solution: def lemonadeChange(self, bills: List[int]) -> bool: five, ten, twenty = 0, 0, 0 for bill in bills: if bill == 5: five += 1 e 阅读全文
posted @ 2023-11-14 13:01 忆象峰飞 阅读(16) 评论(0) 推荐(0)