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

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..

BinaryGap A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary representation of N. For example, number 9 has binary representation 1001 and contains a binary gap of length 2. The number 529 has binary representation 1000010001 and contains two binary gaps: one of length 4 and one of length 3. The number 20 ha..