博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Add Binary
阅读量:5036 次
发布时间:2019-06-12

本文共 619 字,大约阅读时间需要 2 分钟。

Given two binary strings, return their sum (also a binary string).

For example,

a = "11"
b = "1"
Return "100".

博主对于自己那冗长的代码真是累感不爱了~连注释都不用标了,特别清晰明了,捂脸逃走~只能安慰自己起码跑过了。。。

 

public class Solution {    public String addBinary(String a, String b) {  String n1=new StringBuilder(a).reverse().toString();         String n2=new StringBuilder(b).reverse().toString();         StringBuilder sb= new StringBuilder();         int l=Math.min(a.length(),b.length());         int carry=0;         int digit=0;         for(int i=0;i
b.length()){ for(int i=l;i

 

转载于:https://www.cnblogs.com/joannacode/p/4421181.html

你可能感兴趣的文章
model中字段格式验证
查看>>
host路径
查看>>
查看linux 内存
查看>>
HTTP 状态码
查看>>
Ubuntu 14.10 下卸载MySQL
查看>>
练习题 求字符串是否为回文
查看>>
为了兼容性问题,本人一律淘汰不兼容如下三种浏览器的js
查看>>
RowFilter 对于已获取到的dataset进行过滤
查看>>
451. Sort Characters By Frequency
查看>>
第十五周总结
查看>>
java学习笔记-hibernate基础(1)
查看>>
jQuery属性操作
查看>>
模块time, datetime的用法
查看>>
php基础上
查看>>
jsp
查看>>
Spring @PostConstruct和@PreDestroy实例
查看>>
2、如何解决xamarin没有相关教程的的指导贴
查看>>
rman压缩备份题目
查看>>
Shell Step by Step
查看>>
fieldset legend
查看>>