Skip to content

Instantly share code, notes, and snippets.

@Desolve
Last active July 4, 2019 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Desolve/cc6b5ff550d626da5c2a62a2949f3e9a to your computer and use it in GitHub Desktop.
Save Desolve/cc6b5ff550d626da5c2a62a2949f3e9a to your computer and use it in GitHub Desktop.
0067 Add Binary
// Solution from lx223
public class Solution {
public String addBinary(String a, String b) {
StringBuilder sb = new StringBuilder();
int i = a.length() - 1, j = b.length() - 1, carry = 0;
while (i >= 0 || j >= 0) {
int sum = carry;
if (j >= 0) sum += b.charAt(j--) - '0';
if (i >= 0) sum += a.charAt(i--) - '0';
sb.append(sum % 2);
carry = sum / 2;
}
if (carry != 0) sb.append(carry);
return sb.reverse().toString();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment