Skip to content

Commit dc81057

Browse files
committed
Runtime: 3 ms (Top 78.39%) | Memory: 6.3 MB (Top 85.17%)
1 parent bbd3cc4 commit dc81057

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/A/Add Binary/Add Binary.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 3 ms (Top 78.39%) | Memory: 6.3 MB (Top 85.17%)
12
class Solution {
23
public:
34
string addBinary(string a, string b) {
@@ -19,4 +20,4 @@ class Solution {
1920
reverse(ans.begin(),ans.end());
2021
return ans;
2122
}
22-
};
23+
};

0 commit comments

Comments
 (0)