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