过时小白菜

文章
3
资源
0
加入时间
2年10月17天

LeetCode 二进制求和

https://leetcode-cn.com/problems/add-binary/description/我的解决方案: 因为给的二进制字符串可能会非常长,将其装换为整数会产生溢出,因此只能做字符串处理class Solution { public static String addBinary(String a, String b) { //较长字符串和...