Skip to content

Commit 0171357

Browse files
committed
Add comment for q067-add-binary.swift
1 parent 66c0823 commit 0171357

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

leetcode-swift/Easy/q067-add-binary.swift

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ struct q67 {
3838
var indexB = b.count - 1
3939
var carry = 0
4040
while indexA >= 0 || indexB >= 0 {
41+
//a and b may have different length
4142
let bitA = indexA >= 0 ? Int(String(a[indexA]), radix: 2) : 0
4243
let bitB = indexB >= 0 ? Int(String(b[indexB]), radix: 2) : 0
4344
var sum = bitA! + bitB! + carry

0 commit comments

Comments
 (0)