Redian新闻
>
万佛请教特浓咖啡机espresso推荐
avatar
万佛请教特浓咖啡机espresso推荐# PhotoGear - 摄影器材
s*n
1
这个题目我做的只能pass一个case,不知道后面的case错在哪里了。后面附上我的代码
http://www.testdome.com/for-developers/solve-question/10283?visibility=1
http://www.testdome.com/for-developers/solve-question/10283?visibility=1
#include
#include
#include
#include
#include
class TwoSum
{
public:
static std::pair findTwoSum(const std::vector& list, int
sum)
{

std::unordered_map hashed;
for(unsigned int i = 0; i < list.size(); i ++){
hashed.insert(std::pair(list[i], static_cast(i)));
}
for(auto i:hashed){
int a1 = i.first;
int a2 = sum - a1;
if(hashed.count(a2) != 0){
return std::pair(i.second, static_cast(hashed
[a2]));
}
}
return std::pair(-1, -1);
}
};
#ifndef RunTests
int main()
{
std::vector list;
list.push_back(1);
list.push_back(3);
list.push_back(5);
list.push_back(7);
list.push_back(9);
std::pair indices = TwoSum::findTwoSum(list, 12);
std::cout << indices.first << 'n' << indices.second;
}
#endif
avatar
t*g
2
比如SP 500
值是1200
意思就是一股要$1200?
我可以买半股么。。?好贵阿
avatar
L*x
3
能打花的那种,特浓的。
谁说的每天一定要喝的来着?
推荐一款吧。。。。
avatar
o*r
4
我们刷的都是leetcode吗?怎么函数看起来这么不一样?
https://leetcode.com/problems/two-sum/description/
class Solution {
public:
vector twoSum(vector& nums, int target) {
vector ret = {-1, -1};
unordered_map mp;
for (int i = 0; i < nums.size(); ++i) {
int remain = target - nums[i]; // TODO: deal with overflow
if (mp.count(remain) > 0) {
ret[0] = mp[remain];
ret[1] = i;
return ret;
} else {
mp[nums[i]] = i;
}
}
return ret;
}
};
avatar
D*I
5
walmart的mr coffee, 40刀,很好用

【在 L*********x 的大作中提到】
: 能打花的那种,特浓的。
: 谁说的每天一定要喝的来着?
: 推荐一款吧。。。。

avatar
g*n
7
土人没用过好的啊, nexpresso.

【在 L*********x 的大作中提到】
: 能打花的那种,特浓的。
: 谁说的每天一定要喝的来着?
: 推荐一款吧。。。。

avatar
L*x
8
这个牌子好多款啊,那种好啊?

【在 D*****I 的大作中提到】
: walmart的mr coffee, 40刀,很好用
avatar
L*x
9
没用过啊,家里这个还不到8块钱。。。

【在 g*****n 的大作中提到】
: 土人没用过好的啊, nexpresso.
avatar
g*n
11
我也没用过, 我这里以前的一个韩国小姑娘有一个, 要买nexpresso的单独的那种cup
, 尝尝味道很不错, 其他的我就没碰到过更好的牌子了

【在 L*********x 的大作中提到】
: 没用过啊,家里这个还不到8块钱。。。
avatar
g*n
13
恩, 最后结果是买nexpresso

【在 L*********x 的大作中提到】
: 这个好
avatar
D*I
14
就espresso maker

【在 L*********x 的大作中提到】
: 这个牌子好多款啊,那种好啊?
avatar
f*r
15
有包子没?

【在 L*********x 的大作中提到】
: 这个好
avatar
m*f
16
家用的推荐两款:
5d2 Pasquini Livia 90
60d Rancilio silvia
另外, Grinder很重要, 打奶的技术也很重要...
avatar
j*f
18
Delonghi的是意大利的好牌子,专业
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。