摘要: What's AWS S3 database for unstructured data, we can put a static website (doesn't need that much back-end) on S3 Why use S3 high scalability horizont 阅读全文
posted @ 2024-03-29 17:30 MiraMira 阅读(35) 评论(0) 推荐(0)
摘要: 232.用栈实现队列 class MyQueue: def __init__(self): """ in主要负责push,out主要负责pop """ self.stack_in = [] self.stack_out = [] def push(self, x: int) -> None: """ 阅读全文
posted @ 2024-03-29 10:28 MiraMira 阅读(21) 评论(0) 推荐(0)