일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리눅스
- codility
- BC렌트
- Lesson3
- binaray_gap
- 프로그래머스
- 백준알고리즘
- 벤쿠버렌트
- 파이도 환불
- 레노보노트북
- 설탕문제
- 언마운트
- 벤쿠버 렌트
- 자바
- FIDO 환불
- 1463번
- database연결
- QA엔지니어
- Java
- IntelliJ
- 엔테크서비스
- 부산입국
- 외래키설정
- 데이터의 무결성
- 캐나다워홀
- FK 설정
- Linux
- Lesson2
- FLEX5
- 벤쿠버집구하기
- 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