-
Notifications
You must be signed in to change notification settings - Fork 886
/
AddBinary.swift
34 lines (29 loc) · 915 Bytes
/
AddBinary.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
* Question Link: https://leetcode.com/problems/add-binary/
* Primary idea: Two pointers: use carry and iterate from last to start
*
* Note: Swift does not have a way to access a character in a string with O(1),
* thus we have to first transfer the string to a character array
* Time Complexity: O(n), Space Complexity: O(n)
*
*/
class AddBinary {
func addBinary(_ a: String, _ b: String) -> String {
let a = Array(a), b = Array(b)
var res = "", carry = 0, i = a.count - 1, j = b.count - 1
while i >= 0 || j >= 0 || carry > 0 {
var sum = carry
if i >= 0 {
sum += Int(String(a[i]))!
i -= 1
}
if j >= 0 {
sum += Int(String(b[j]))!
j -= 1
}
res = "\(sum % 2)" + res
carry = sum / 2
}
return res
}
}