일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Java
- Lesson2
- 벤쿠버렌트
- FIDO 환불
- 언마운트
- FLEX5
- BC렌트
- IntelliJ
- Linux
- 부산입국
- 캐나다워홀
- binaray_gap
- 엔테크서비스
- FK 설정
- 벤쿠버집구하기
- 1463번
- 데이터의 무결성
- 벤쿠버 렌트
- database연결
- 외래키설정
- Lesson3
- 설탕문제
- codility
- 백준알고리즘
- 프로그래머스
- 자바
- 파이도 환불
- 레노보노트북
- QA엔지니어
- 리눅스
- Today
- Total
목록분류 전체보기 (200)
대충이라도 하자
Hard!!! - too many variables - think about the edge cases - array index starts from 0, but length of array is the same with just the number. class Solution { public double findMedianSortedArrays(int[] nums1, int[] nums2) { //median 찾기 //sorted arrays int s1= 0, s2=0, index=-1; int m = nums1.length; int n = nums2.length; int [] result = new int[m+n]; while(index != (m+n)/2){ index++; if(s1>m-1) {..
https://leetcode.com/list/xi4ci4ig/ Favorite - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 1. Brute Force - O(N^2) class Solution { public int[] twoSum(int[] nums, int target) { int [] result = new int[2]; //1. for문 2개 for(int i =0; i