일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- high level client
- Test
- 파이썬
- flask
- matplotlib
- aggregation
- aggs
- API
- TensorFlow
- MySQL
- Mac
- Python
- License
- license delete
- licence delete curl
- Kafka
- query
- sort
- docker
- 900gle
- Java
- analyzer test
- zip 파일 암호화
- zip 암호화
- Elasticsearch
- ELASTIC
- token filter test
- plugin
- springboot
- 차트
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