일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IntentTestRule
- binding adapter
- 뷰변경 감지
- searchview
- espresso
- 안드로이드개발레벨업교과서
- Fragment에서 Activity의 함수 사용하기
- 생명주기
- 고차함수
- ActivityTestRule
- 안드로이드스튜디오
- recyclerview
- Error:Execution failed for task ':app:mergeDebugResources'
- 코틀린
- LayoutManger
- 리사이클러뷰
- fragment
- 안드로이드13
- 안드로이드
- 스와이프
- 재사용
- 구분선
- viewholder
- Android
- ui test
- 테마 아이콘
- Fragment 수동 추가
- 코딜리티
- high order function
- adapter
- Today
- Total
목록분류 전체보기 (241)
룬아님의 취중코딩

PermMissingElem An array A consisting of N different integers is given. The array contains integers in the range [1..(N + 1)], which means that exactly one element is missing. Your goal is to find that missing element. Write a function: class Solution { public int solution(int[] A); } that, given an array A, returns the value of the missing element. For example, given array A such that: A[0] = 2..

FrogRiverOne A small frog wants to get to the other side of a river. The frog is initially located on one bank of the river (position 0) and wants to get to the opposite bank (position X+1). Leaves fall from a tree onto the surface of the river. You are given an array A consisting of N integers representing the falling leaves. A[K] represents the position where one leaf falls at time K, measured..

OddOccurrencesInArray A non-empty array A consisting of N integers is given. The array contains an odd number of elements, and each element of the array can be paired with another element that has the same value, except for one element that is left unpaired. For example, in array A such that: A[0] = 9 A[1] = 3 A[2] = 9 A[3] = 3 A[4] = 9 A[5] = 7 A[6] = 9 the elements at indexes 0 and 2 have valu..

CyclicRotation An array A consisting of N integers is given. Rotation of the array means that each element is shifted right by one index, and the last element of the array is moved to the first place. For example, the rotation of array A = [3, 8, 9, 7, 6] is [6, 3, 8, 9, 7] (elements are shifted right by one index and 6 is moved to the first place). The goal is to rotate array A K times; that is..