leetcode/include/map_vec.h
2023-05-18 00:12:05 +08:00

6 lines
109 B
C++

#pragma once
#include <map>
namespace yaha {
std::vector<int> two_sum(std::vector<int> &nums, int target);
}