Skip to content

Commit

Permalink
Merge pull request #775 from dalpang81/main
Browse files Browse the repository at this point in the history
[WonYeong] Week3
  • Loading branch information
SamTheKorean authored Dec 29, 2024
2 parents 3bdefb1 + 1d20733 commit 7e40cb3
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
23 changes: 23 additions & 0 deletions product-of-array-except-self/dalpang81.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*
* 시간복잡도: O(n)
* 공간복잡도: O(1)
* */
class Solution {
public int[] productExceptSelf(int[] nums) {
int n = nums.length;
int[] answer = new int[n];

answer[0] = 1;
for (int i = 1; i < n; i++) {
answer[i] = answer[i - 1] * nums[i - 1];
}

int suffixProduct = 1;
for (int i = n - 1; i >= 0; i--) {
answer[i] *= suffixProduct;
suffixProduct *= nums[i];
}

return answer;
}
}
16 changes: 16 additions & 0 deletions reverse-bits/dalpang81.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*
* 시간복잡도: O(1)
* 공간복잡도: O(1)
* */
public class Solution {
// you need treat n as an unsigned value
public int reverseBits(int n) {
int result = 0;
for (int i = 0; i < 32; i++) {
result <<= 1;
result |= (n & 1);
n >>= 1;
}
return result;
}
}
23 changes: 23 additions & 0 deletions two-sum/dalpang81.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*
* 시간복잡도 : O(n)
* 공간복잡도 : O(n)
* */

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++) {
int complement = target - nums[i];

if (map.containsKey(complement)) {
return new int[] { map.get(complement), i };
}
map.put(nums[i], i);
}
return null;
}
}

0 comments on commit 7e40cb3

Please sign in to comment.