Skip to content

Commit c6acd64

Browse files
add #include statements
1 parent 6fa72b9 commit c6acd64

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

cpp/_1.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ Because nums[0] + nums[1] = 2 + 7 = 9,
1313
return [0, 1].
1414
1515
*/
16+
17+
#include <vector>
18+
#include <unordered_map>
19+
using namespace std;
20+
1621
class Solution {
1722
public:
1823
vector<int> twoSum(vector<int>& nums, int target) {

0 commit comments

Comments
 (0)