摘要: 自己写的 class Solution: def addBinary(self, a: str, b: str) -> str: a_len=len(a) b_len=len(b) if a_len<b_len: temp=b b=a a=temp a_len = len(a) b_len = le 阅读全文
posted @ 2024-01-24 14:47 Junior_bond 阅读(11) 评论(0) 推荐(0)