반응형 분류 전체보기232 2019년 07월 28일 일기장 보호되어 있는 글 입니다. 2019. 7. 28. [프로그래머스 - 스택/큐] 주식가격 📄 [DP] N으로 표현 C++ Source Code #include #include using namespace std; // prices은 하나의 주식 가격 목록 초당 주식 가격 (개별이 아닌 하나의 주식의 가격 목록) vector solution(vector prices) { vector answer; int length = prices.size(); for (int ii = 0; ii < length - 1; ii++) { // 마지막의 주식 가격은 떨어지지 않으므로 마지막의 그 전 주식 가격만 확인한다. int count = 0; for (int jj = ii + 1; jj < length; jj++) { if (prices[ii] 2019. 7. 28. [Android] AsyncTask Asynctask in Android -Theory | Android Tutorial for Beginner - YouTube AsyncTask enables proper and easy use of the UI thread. This class allows you to perform background operations and publish results on the UI thread without having to manipulate threads and/or handlers. AsyncTask is designed to be a helper class around Thread and Handler and does not constitute a generic threading framework. A.. 2019. 7. 25. [Android - OpenSource] Butter Knife [Android] Application Developement Butter Knife YouTube Annotate fields with @BindView and a view ID for Butter Knife to find and automatically cast the corresponding view in your layout. 📌 Butter Knife Installation (Gradle) dependencies { ... compile 'com.jakewharton:butterknife:8.5.1' annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1' ... } 📄 Butter Knife (ACTIVITY BINDING) Sourc.. 2019. 7. 25. 이전 1 ··· 43 44 45 46 47 48 49 ··· 58 다음 반응형