일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 생명주기
- high order function
- 구분선
- 리사이클러뷰
- binding adapter
- 안드로이드13
- 테마 아이콘
- Fragment에서 Activity의 함수 사용하기
- 스와이프
- 안드로이드
- fragment
- 고차함수
- espresso
- Android
- IntentTestRule
- 안드로이드스튜디오
- 안드로이드개발레벨업교과서
- 뷰변경 감지
- LayoutManger
- 재사용
- ui test
- adapter
- Error:Execution failed for task ':app:mergeDebugResources'
- viewholder
- searchview
- Fragment 수동 추가
- 코딜리티
- 코틀린
- ActivityTestRule
- recyclerview
- Today
- Total
목록개발/알고리즘 (34)
룬아님의 취중코딩
Dominator An array A consisting of N integers is given. The dominator of array A is the value that occurs in more than half of the elements of A. For example, consider array A such that A[0] = 3 A[1] = 4 A[2] = 3 A[3] = 2 A[4] = 3 A[5] = -1 A[6] = 3 A[7] = 3 The dominator of A is 3 because it occurs in 5 out of 8 elements of A (namely in those with indices 0, 2, 4, 6 and 7) and 5 is more than a ..
Nesting A string S consisting of N characters is called properly nested if: S is empty; S has the form "(U)" where U is a properly nested string; S has the form "VW" where V and W are properly nested strings. For example, string "(()(())())" is properly nested but string "())" isn't. Write a function: class Solution { public int solution(String S); } that, given a string S consisting of N charac..
StoneWall You are going to build a stone wall. The wall should be straight and N meters long, and its thickness should be constant; however, it should have different heights in different places. The height of the wall is specified by an array H of N positive integers. H[I] is the height of the wall from I to I+1 meters to the right of its left end. In particular, H[0] is the height of the wall's..
Fish You are given two non-empty arrays A and B consisting of N integers. Arrays A and B represent N voracious fish in a river, ordered downstream along the flow of the river. The fish are numbered from 0 to N − 1. If P and Q are two fish and P < Q, then fish P is initially upstream of fish Q. Initially, each fish has a unique position. Fish number P is represented by A[P] and B[P]. Array A cont..