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

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

Array & Dynamic Array What is the difference between array and dynamic array? What is the corresponding built-in data structure of array and dynamic array in your frequently-used language? How to perform basic operations (initialization, data access, modification, iteration, sort, etc) in an array? How to perform basic operations (initialization, data access, modification, iteration, sort, addit..