반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- QA엔지니어
- FIDO 환불
- 캐나다워홀
- BC렌트
- 벤쿠버 렌트
- 1463번
- binaray_gap
- 벤쿠버집구하기
- FK 설정
- 부산입국
- 레노보노트북
- IntelliJ
- 리눅스
- 엔테크서비스
- database연결
- codility
- 언마운트
- 데이터의 무결성
- 자바
- 프로그래머스
- 파이도 환불
- Linux
- 설탕문제
- Lesson2
- 백준알고리즘
- Lesson3
- Java
- 외래키설정
- FLEX5
- 벤쿠버렌트
Archives
- Today
- Total
대충이라도 하자
Blind 75 Must Do Leetcode - Two sum 본문
반응형
https://leetcode.com/list/xi4ci4ig/
1. Brute Force - O(N^2)
class Solution {
public int[] twoSum(int[] nums, int target) {
int [] result = new int[2];
//1. for문 2개
for(int i =0; i<nums.length-1;i++){
for(int j = i+1;j<nums.length;j++){
if(nums[i]+nums[j] == target) {
result[0] = i;
result[1] = j;
break;
}
}
}
return result;
}
}
2. using hashmap ( O(N) )
class Solution {
public int[] twoSum(int[] nums, int target) {
HashMap<Integer, Integer> map = new HashMap<>();
for(int i =0; i<nums.length;i++){
if(map.containsKey(nums[i])){
int first = map.get(nums[i]);
return new int[] {first, i};
}else {
map.put(target-nums[i], i);
}
}
return new int[2];
}
}
반응형
'꼬꼬마 개발자 노트 > Coding Problems' 카테고리의 다른 글
Design Gurus(Day1) (0) | 2023.08.28 |
---|---|
Leetcode - Median of two sorted Arrays (0) | 2022.07.13 |
Diagonal Traverse (0) | 2022.03.22 |
Best Time to Buy and Sell Stock ( Leetcode) (0) | 2022.02.23 |
Array and String - Introduction to Array (0) | 2022.02.07 |
Comments