Rename
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#include "s1_two_sum.hpp"
|
||||
#include "s0001_two_sum.hpp"
|
||||
using namespace std;
|
||||
|
||||
vector<int> Solution::twoSum(vector<int>& nums, int target) {
|
@@ -1,4 +1,4 @@
|
||||
#include "s2_add_two_numbers.hpp"
|
||||
#include "s0002_add_two_numbers.hpp"
|
||||
|
||||
ListNode* Solution::addTwoNumbers(ListNode* l1, ListNode* l2) {
|
||||
ListNode *l_begin = new ListNode((l1->val + l2->val) % 10);
|
Reference in New Issue
Block a user