일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Navigation
- drift
- binding
- DART
- data
- android
- scroll
- tabbar
- viewmodel
- 앱바
- textview
- CustomScrollView
- 계측
- 테스트
- LifeCycle
- 앱
- intent
- activity
- Coroutines
- TEST
- 안드로이드
- Compose
- Dialog
- appbar
- Flutter
- Button
- livedata
- textfield
- Kotlin
- ScrollView
- Today
- Total
목록알고리즘 (13)
Study Record
#include #include #include using namespace std; int solution(vector priorities, int location) { int answer = 0; int biggerNum[10] = { 0 }; queue waitting; for (int i = 0; i 0; i--) { if (biggerNum[i] == 0) continue; int count = b..
#include #include using namespace std; vector solution(vector progresses, vector speeds) { vector answer; int day = 0, i=0, len = speeds.size(); while(i = 100){ num++;..
음양 더하기 #include #include using namespace std; int solution(vector absolutes, vector signs) { int answer = 0; for(int i=0; i
#include #include using namespace std; int solution(vector numbers) { int answer = 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9; for(int i=0; i
#include #include using namespace std; vector solution(int m, int n, vector picture) { int number_of_area = 0; int max_size_of_one_area = 0; for (int i = 0; i < m; i++) { for (int k = 0; k < n; k++) { // 0 이면 패스 if (picture[i][k] == 0) continue; else { number_of_area++; int size_of_area = 1; int area_value = picture[i][k]; picture[i][k] = 0; stack area; area.push(make_pair(i, k)); do { int now_i..
#include #include #include using namespace std; int solution(vector board, vector moves) { int answer = 0; stack dollStack; for(int i=0; i< moves.size(); i++){ int index = moves[i] - 1; int doll = 0; for(int k=0; k
#include #include #include using namespace std; string getUid(string str) { int start = 0, count = 0, end = 0; while (str[start] != ' ') start++; end = ++start; while (end < str.length() && str[end] != ' ') { end++; count++; } return str.substr(start, count); } string getNickname(string str) { int start = str.length() - 1; while (str[start] != ' ') start--; return str.substr(start + 1, str.lengt..
#include #include using namespace std; int getDistance(int a, int b){ if(a == 0) a = 11; if(b == 0) b = 11; int distance = b - a; if(distance < 0) distance = a - b; return distance / 3 + distance % 3; } string solution(vector numbers, string hand) { string answer = ""; int nowLeft = 10; // * int nowRight = 12; // # for(int i=0; i rightDistance){ nowRight = number; answer += 'R'; } else if(leftDi..