Skip to content
Merged

Week3 #776

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions two-sum/paragon0107.java
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. nums를 두번 순회하고 있는데, 순회를 한번으로 줄일 수 있을까요?
  2. Big O 분석까지 해주시면 더 좋을 것 같아요 ㅎㅎ

Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

import java.util.HashMap;
import java.util.Map;

class Solution {
public int[] twoSum(int[] nums, int target) {
Map<Integer, Integer> map = new HashMap<>();
for(int i =0;i<nums.length;i++){
map.put(nums[i], i);
}

for(int i = 0;i<nums.length;i++){
int b = target - nums[i];
if(map.containsKey(b) && map.get(b) != i){
int j = map.get(b);
return new int[]{i,j};
}
}
return null;
}
}
Loading