摘要: Relational Database Services manage DB using SQL allow you to create databases in the cloud that are managed by aws Postgres, MySQL, Maria DB, Oracle, 阅读全文
posted @ 2024-04-23 17:59 MiraMira 阅读(21) 评论(0) 推荐(0)
摘要: 860.柠檬水找零 class Solution: def lemonadeChange(self, bills: List[int]) -> bool: amt_five = 0 amt_ten = 0 amt_twenty = 0 for i in bills: if i == 5: amt_f 阅读全文
posted @ 2024-04-23 12:09 MiraMira 阅读(20) 评论(0) 推荐(0)