Leetcode 67. 二进制求和 C++

题目描述 方法一 暴力法 class Solution { public: string addBinary(string a, string b) { string res; if(a.empty() && b.empty()) return res; if(a.empty() || b.empty()) return a.empty()?
相关文章
相关标签/搜索