일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Fragment 수동 추가
- 뷰변경 감지
- 코틀린
- fragment
- 생명주기
- espresso
- Fragment에서 Activity의 함수 사용하기
- recyclerview
- high order function
- 리사이클러뷰
- ActivityTestRule
- 안드로이드
- 스와이프
- 안드로이드스튜디오
- 고차함수
- Android
- searchview
- Error:Execution failed for task ':app:mergeDebugResources'
- ui test
- 안드로이드개발레벨업교과서
- 코딜리티
- 구분선
- LayoutManger
- 재사용
- 안드로이드13
- viewholder
- 테마 아이콘
- binding adapter
- IntentTestRule
- adapter
- Today
- Total
목록개발/알고리즘 (34)
룬아님의 취중코딩
GenomicRangeQuery A DNA sequence can be represented as a string consisting of the letters A, C, G and T, which correspond to the types of successive nucleotides in the sequence. Each nucleotide has an impact factor, which is an integer. Nucleotides of types A, C, G and Thave impact factors of 1, 2, 3 and 4, respectively. You are going to answer several queries of the form: What is the minimal im..
MaxCounters You are given N counters, initially set to 0, and you have two possible operations on them: increase(X) − counter X is increased by 1, max counter − all counters are set to the maximum value of any counter. A non-empty array A of M integers is given. This array represents consecutive operations: if A[K] = X, such that 1 ≤ X ≤ N, then operation K is increase(X), if A[K] = N + 1 then o..
PermCheck A non-empty array A consisting of N integers is given. A permutation is a sequence containing each element from 1 to N once, and only once. For example, array A such that: A[0] = 4 A[1] = 1 A[2] = 3 A[3] = 2 is a permutation, but array A such that: A[0] = 4 A[1] = 1 A[2] = 3 is not a permutation, because value 2 is missing. The goal is to check whether array A is a permutation. Write a..
MissingInteger This is a demo task. Write a function: class Solution { public int solution(int[] A); } that, given an array A of N integers, returns the smallest positive integer (greater than 0) that does not occur in A. For example, given A = [1, 3, 6, 4, 1, 2], the function should return 5. Given A = [1, 2, 3], the function should return 4. Given A = [−1, −3], the function should return 1. Wr..