Skip to content

Commit 438743c

Browse files
committed
Runtime: 55 ms (Top 55.51%) | Memory: 71 MB (Top 93.72%)
1 parent 9fb2149 commit 438743c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/A/Add Two Numbers/Add Two Numbers.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 55 ms (Top 55.51%) | Memory: 71 MB (Top 93.72%)
12
class Solution {
23
public:
34
ListNode* addTwoNumbers(ListNode* l1, ListNode* l2) {
@@ -46,4 +47,4 @@ class Solution {
4647
}
4748
return head3;
4849
}
49-
};
50+
};

0 commit comments

Comments
 (0)