전체 글103 Leetcode Intersection of Two Arrays II JAVA 풀고보니 나만 맵써서 풀었다.. 덕분에 시간복잡도가 올라간듯.. class Solution { public int[] intersect(int[] nums1, int[] nums2) { Map map1 = new HashMap(); Map map2 = new HashMap(); List list = new ArrayList(); for(int i=0;iv+1); map1.putIfAbsent(nums1[i],1); } for(int i=0;iv+1); map2.putIfAbsent(nums2[i].. 2020. 12. 28. 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. 이전 1 ··· 10 11 12 13 14 15 16 ··· 26 다음