분류 전체보기
-
Leetcode 121. Best Time to Buy and Sell Stock개발/Leetcode 2023. 6. 24. 10:51
https://leetcode.com/problems/best-time-to-buy-and-sell-stock/description/ Best Time to Buy and Sell Stock - LeetCode Can you solve this real interview question? Best Time to Buy and Sell Stock - You are given an array prices where prices[i] is the price of a given stock on the ith day. You want to maximize your profit by choosing a single day to buy one stock and choosin leetcode.com 문제 각 일자에 해..
-
Leetcode 217. Contains Duplicate개발/Leetcode 2023. 6. 24. 10:43
https://leetcode.com/problems/contains-duplicate/description/ Contains Duplicate - LeetCode Can you solve this real interview question? Contains Duplicate - Given an integer array nums, return true if any value appears at least twice in the array, and return false if every element is distinct. Example 1: Input: nums = [1,2,3,1] Output: true Ex leetcode.com 문제 nums 배열이 주어질 때 중복된 엘레멘트가 하나라도 존재하는 경..
-
Leetcode 714. Best Time to Buy and Sell Stock with Transaction Fee개발/Leetcode 2023. 6. 22. 10:58
https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-transaction-fee/ Best Time to Buy and Sell Stock with Transaction Fee - LeetCode Can you solve this real interview question? Best Time to Buy and Sell Stock with Transaction Fee - You are given an array prices where prices[i] is the price of a given stock on the ith day, and an integer fee representing a transaction fee. Find the..
-
[퇴사일기] 에스엘일상/직장 2023. 6. 16. 16:56
이 글은 지극히 편향적인 회사에 대한 평가이기에 그 점을 전제로 읽어 주시길 부탁드립니다. 대구에서 자고 나란 사람, 그 중에 대구에서 취업을 위해 다양한 기업을 조사한다면 필히 알게되는 회사 에스엘이다. 에스엘은 HKMC(현대기아자동차) 1차 벤더사로 다양한 부품 중 헤드램프를 개발 제조하고 있다. 나는 이 회사에 대해 잘 알지 못했지만 합격하게 되었고 출근을 할 수 있었다. 최종합격 통보 페이지를 캡처하지 않았기에 메일로 대신한다. 도메인이나 내용을 보면 충분히 최종합격한 것을 알 수 있으리라 생각한다. 대구에서 인지도 측면에서 대구은행에는 뒤쳐지지만 초반 급여 수준은 굉장히 높은 수준이다. 아마도 포괄임금제를 적용해서 약 5000만원의 수준으로 기억하고 있다.(성과급은 거의 없다) 또한 제조업이다보..
-
[Leetcode] 1161. Maximum Level Sum of a Binary Tree개발/Leetcode 2023. 6. 15. 10:30
https://leetcode.com/problems/maximum-level-sum-of-a-binary-tree/description/ Maximum Level Sum of a Binary Tree - LeetCode Can you solve this real interview question? Maximum Level Sum of a Binary Tree - Given the root of a binary tree, the level of its root is 1, the level of its children is 2, and so on. Return the smallest level x such that the sum of all the values of node leetcode.com 문제 바..
-
Android Room Date Type에 대한 에러개발/Android 2023. 6. 9. 15:40
D:\wookhyun\android\compose\udemy\JetNoteApp\app\build\tmp\kapt3\stubs\debug\com\example\jetnoteapp\model\Note.java:19: error: Cannot figure out how to save this field into database. You can consider adding a type converter for it. private final java.util.Date date = null; Room 데이터베이스를 공부하면서 위 에러를 볼 수 있었다. 안드로이드에서 활용할 수 있는 DB인 SQLite는 date 타입이 존재하지 않는다 따라서 어떻게 저장해야 할지 모르는 SQLite는 에러를 내뱉은 것이다. 이를..
-
Room 사용 시 kapt 에러개발/Android 2023. 6. 9. 11:32
android room을 사용하기 위해 implement를 작성하고 나면 다음의 에러를 간혹 볼 수 있다. * Try: > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. * Exception is: org.gradle.api.GradleScriptException: A problem occurred evaluating project ':app'. ... Caused by: org.gradle.internal.metaobject.AbstractDynamicObject$CustomMessageMissingMethodException: Could not find method kapt..
-
Material Theme Color System개발/Android 2023. 5. 31. 18:35
안드로이드 그리고 플러터를 공부하면서 MaterialTheme을 자주 접하게 된다. 그리고 기 설정된 색을 주로 사용하면서 Primary onSurface 등 다양한 색 구성을 접하게된다. 막연하게 사용했었지만 그 용도를 정확히 파악하고 제대로된 사용처를 파악하여 완성도 있는 앱을 만들고자 정리해둔다. Primary color Primary Color는 앱의 스크린 그리고 컴포넌트에서 가장 빈번하게 사용하는 색이다 일반적으로 appbar에 색이 primary color가 되는 경우가 많습니다. 그리고 primary color에서 더 어두운 색이 systembar 색으로 결정된다.이를 primary varient라고 합니다. Secondary color secondary color는 앱 내에서 특별히 강조..