| 14 | |
| 15 | # Solution : conversion method |
| 16 | class Solution: |
| 17 | def addBinary(self, a, b) -> str: |
| 18 | return '{0:b}'.format(int(a, 2) + int(b, 2)) |
| 19 | |
| 20 | |
| 21 | #solution : Bit manipulation |
nothing calls this directly
no outgoing calls
no test coverage detected