摘要: Add BinaryApr 2 '12 3558 / 10570Given two binary strings, return their sum (also a binary string).For example, a = "11" b = "1" Return "100".class Solution {public: string addBinary(string a, string b) { // Start typing your C/C++ solution below // DO NOT write int 阅读全文
posted @ 2013-07-09 08:54 懒猫欣 阅读(174) 评论(0) 推荐(0)