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
37 changes: 37 additions & 0 deletions merge-two-sorted-lists/donghyeon95.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
// O(N)
// 2포인터로 지나가용 하면 되는 문제
ListNode result = new ListNode();
ListNode nowNode = result;


while (list1!=null || list2!=null) {
int first = list1==null? 101: list1.val;
int second = list2==null? 101: list2.val;
Comment on lines +20 to +21
Copy link
Contributor

Choose a reason for hiding this comment

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

101은 어떤 의미인가요?


if (first < second) {
nowNode.next = new ListNode(first);
nowNode = nowNode.next;
list1 = list1.next;
} else {
nowNode.next = new ListNode(second);
nowNode = nowNode.next;
list2 = list2.next;
}
}

return result.next;
}
}

19 changes: 19 additions & 0 deletions missing-number/donghyeon95.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import java.util.Arrays;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import java.util.stream.Collectors;

// O(N)
class Solution {
public int missingNumber(int[] nums) {
Set<Integer> numSet = Arrays.stream(nums).boxed().collect(Collectors.toSet());

for (int i=0; i<nums.length; i++) {
if (!numSet.contains(i)) return i;
}

return nums.length;
}
}

Loading