일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- query
- zip 파일 암호화
- Test
- License
- 900gle
- 차트
- high level client
- license delete
- MySQL
- Mac
- aggs
- Python
- Java
- plugin
- licence delete curl
- TensorFlow
- API
- docker
- matplotlib
- ELASTIC
- 파이썬
- aggregation
- zip 암호화
- token filter test
- Kafka
- springboot
- analyzer test
- flask
- sort
- Elasticsearch
Archives
- Today
- Total
개발잡부
TwoSum 본문
반응형
public static int[] findTwoSum(int[] list, int sum) {
Map<Integer, Integer> integerMap = new HashMap<>();
System.out.println("sum: " + sum);
if (list == null || list.length < 2)
return null;
for (int i = 0; i < list.length; i++) {
int ch = sum - list[i];
if( integerMap.containsKey(ch)){
return new int[]{i, integerMap.get(ch)};
} else {
integerMap.put(list[i], i);
}
}
return null;
}
반응형
'이직' 카테고리의 다른 글
[programmers] 같은 숫자는 싫어 (0) | 2022.08.28 |
---|---|
[codility] Dominator (0) | 2022.08.08 |
hadoop 준비 (1) | 2022.07.27 |
[codility] Nesting (0) | 2022.07.26 |
[codility] Brackets (0) | 2022.07.25 |
Comments