Skip to content

Commit 92cf8ea

Browse files
author
openset
committed
Update: Add Binary
1 parent 4e75430 commit 92cf8ea

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

problems/add-binary/add_binary.go

+11-13
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
1-
package add_binary
1+
package problem_67
22

33
func addBinary(a string, b string) string {
4-
i, j := len(a)-1, len(b)-1
5-
var carry byte = '0'
6-
var bs []byte
7-
for i >= 0 || j >= 0 || carry != '0' {
4+
ans, l1, l2, carry := "", len(a)-1, len(b)-1, byte('0')
5+
for l1 >= 0 || l2 >= 0 || carry != '0' {
86
v := carry
9-
if i >= 0 {
10-
v += a[i] - '0'
11-
i--
7+
if l1 >= 0 {
8+
v += a[l1] - '0'
9+
l1--
1210
}
13-
if j >= 0 {
14-
v += b[j] - '0'
15-
j--
11+
if l2 >= 0 {
12+
v += b[l2] - '0'
13+
l2--
1614
}
1715
carry = '0' + (v-'0')/2
1816
v = '0' + (v-'0')%2
19-
bs = append([]byte{v}, bs...)
17+
ans = string(v) + ans
2018
}
21-
return string(bs)
19+
return ans
2220
}

problems/add-binary/add_binary_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package add_binary
1+
package problem_67
22

33
import "testing"
44

0 commit comments

Comments
 (0)