We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66c0823 commit 0171357Copy full SHA for 0171357
leetcode-swift/Easy/q067-add-binary.swift
@@ -38,6 +38,7 @@ struct q67 {
38
var indexB = b.count - 1
39
var carry = 0
40
while indexA >= 0 || indexB >= 0 {
41
+ //a and b may have different length
42
let bitA = indexA >= 0 ? Int(String(a[indexA]), radix: 2) : 0
43
let bitB = indexB >= 0 ? Int(String(b[indexB]), radix: 2) : 0
44
var sum = bitA! + bitB! + carry
0 commit comments