We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5af198e commit be0a10eCopy full SHA for be0a10e
scripts/algorithms/A/Add Two Integers/Add Two Integers.cpp
@@ -1,6 +1,7 @@
1
+// Runtime: 3 ms (Top 39.04%) | Memory: 5.8 MB (Top 95.13%)
2
class Solution {
3
public:
- int sum(int num1, int num2) {
4
- return num1+num2;
5
- }
+ int sum(int num1, int num2) {
+ return num1+num2;
6
+ }
7
};
0 commit comments