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()?
相關文章
相關標籤/搜索