We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbd3cc4 commit dc81057Copy full SHA for dc81057
scripts/algorithms/A/Add Binary/Add Binary.cpp
@@ -1,3 +1,4 @@
1
+// Runtime: 3 ms (Top 78.39%) | Memory: 6.3 MB (Top 85.17%)
2
class Solution {
3
public:
4
string addBinary(string a, string b) {
@@ -19,4 +20,4 @@ class Solution {
19
20
reverse(ans.begin(),ans.end());
21
return ans;
22
}
-};
23
+};
0 commit comments