avatar
n*2
1
用map解的,逻辑上有问题。
import java.util.HashMap;
public class Solution {
public static int[] twoSum(int[] numbers, int target) {
// Start typing your Java solution below
// DO NOT write main() function
HashMap map = new HashMap();

int[] result = new int[2];
for (int i = 0; i < numbers.length; i++)
{
map.put(numbers[i], i); // 这里为啥不行呐?一定要放到if加个
else之后才行,求大牛指导。
if (map.containsKey(target - numbers[i]))
{
result[0] = map.get(target-numbers[i]) + 1;
result[1] = i + 1;

break;
}




}
return result;


}

}
avatar
p*c
2
据说都是物美价廉 想寻寻
cetaphi
Eurocein
Paula's choice
badger suncreen
HEB、CVS或超市就有?
谢谢~
btw: 有JMS用过BOTANICS么?怎样啊?他家BATH OIL呢?
SOS了!
avatar
p*g
3
Someday you will rule this land...
avatar
c*7
4
你用这个test case测就知道了
[1], target=2
avatar
n*o
5
前两个是个超市药店都有
avatar
t*t
6
狮子王?

【在 p*********g 的大作中提到】
: Someday you will rule this land...
avatar
P*y
7
Paula's choice
www.cosmeticscop.com
avatar
p*c
8
太好了 我去看看
谢谢~

【在 P***y 的大作中提到】
: Paula's choice
: www.cosmeticscop.com

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。