Skip to content
Merged
Show file tree
Hide file tree
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
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;
}
}
Loading