题目描述
blablabla
样例
blablabla
算法1
时间复杂度
O(n)
参考文献
C++ 代码
class Solution {
public:
vector[HTML_REMOVED] twoSum(vector[HTML_REMOVED]& nums, int target)
{
vector[HTML_REMOVED] res;
unordered_map[HTML_REMOVED] hash;
for (int i = 0; i < nums.size(); i ++ )
{
int another = target - nums[i];
if (hash.count(another))
{
res = vector[HTML_REMOVED]({hash[another], i});
break;
}
hash[nums[i]] = i;
}
return res;
}
};
算法2
(暴力枚举) $O(n^2)$
blablabla
时间复杂度
参考文献
C++ 代码
blablabla
如果不是很会使用Markdown呢,建议来看一下这个~
正确使用Markdown,你的题解才会有人看哦~