문제풀이64 LeetCode Missing Number JAVA 다른분들 풀이 보니까 전체 합에서 빼시네..저건 생각 못했다.. class Solution { public int missingNumber(int[] nums) { Arrays.sort(nums); int answer=-1; for(int i=0;i 2020. 12. 26. Leetcode First Unique Character in a String JAVA class Solution { public int firstUniqChar(String s) { char[] allChar = s.toCharArray(); Map map = new HashMap(); char uniqueChar; int answer=-1; if(allChar.length==1){ return 0; } for(int i=0;i 2020. 12. 25. Leetcode Pascal's Triangle II JAVA class Solution { public List generate(int numRows) { List list = new ArrayList(); for(int i=0;i 2020. 12. 24. Leetcode Merge Two Sorted Lists //빈 head 객체를 만들고 그 헤드에 다음노드를 새로 만들어서 생성해준다. //그러면서 그 다음 노드를 계속적으로 연결시켜준다. //단 시작의 빈 head의 val에는 0이 들어가기 때문에 head.next를 리턴해준다. class Solution { public ListNode mergeTwoLists(ListNode l1, ListNode l2) { if(l1==null||l2==null) return l1==null ? l2 : l1; ListNode head = new ListNode(); ListNode nextNode; if(l1.val>l2.val){ head.next = new ListNode(l2.val); nextNode = head.next; l2=l2.next; }else{ he.. 2020. 12. 23. 이전 1 ··· 6 7 8 9 10 11 12 ··· 16 다음