전체 글

내공냠냠
pod init pod install m1 에서 xcode 업데이트 이후 오류 발생 고치는 법: https://velog.io/@doka/Dont-forget-to-include-the-Crash-Report-log-file-underDiagnosticReports-directory-in-bug-reports ios Swift CocoaPods 에러 - You may have encountered a bug in the Ruby interpreter or extension libraries. [M1] cocoapods xcode 연동시 pod install 에러 velog.io pod: https://github.com/vincentneo/CoreGPX GitHub - vincentneo/CoreGPX:..
SLAM-Course - 00 - Course Introduction (2013/14; Cyrill Stachniss) SLAM-Course - 01 - Introduction to Robot Mapping (2013/14; Cyrill Stachniss) Robot maaping Robot - device Mapping - modeling the environment. Metrix, city map 등을 나타내는 것. 의사결정을 위해 사용하는 정보를 수집하는 환경에 대한 State estimation - positions, 어디에 로봇이 있고 landmark가 있는지. State of the world Localization - 기기가 어디에 있는지. X, Y coordinate, angular.. M..
https://leetcode.com/problems/sales-person/ Sales Person - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 믿기진 않지만 best와 동일 select name from SalesPerson where sales_id not in (select distinct sales_id from Orders where com_id = (select com_id from Company where name = 'RED'))
https://leetcode.com/problems/rising-temperature/ Rising Temperature - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com select a.id as Id from Weather as a join Weather as b on DATEDIFF(a.recordDate, b.recordDate) = 1 and a.temperature > b.temperature solution comment 에는 id 를 가지고 하는..
https://leetcode.com/problems/article-views-i/ Article Views I - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com select distinct a.author_id as id from Views as a where a.author_id = a.viewer_id order by id best SELECT AUTHOR_ID AS ID FROM VIEWS WHERE AUTHOR_ID=VIEWER_ID GROUP BY I..
https://leetcode.com/problems/customer-who-visited-but-did-not-make-any-transactions/ Customer Who Visited but Did Not Make Any Transactions - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 이해하는 데 오래걸렸다. 처음에는 이해를 못해서 discussion 으로 찾아보았고, 그래도 모르겠어서 다음날 다시 도전했더니 이해가 되었다. select v..
https://leetcode.com/problems/min-cost-climbing-stairs/ Min Cost Climbing Stairs - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com class Solution { public: int minCostClimbingStairs(vector& cost) { // 10, 15, 20, 0 // 0, 1, 2, 3 cost.push_back(0); for(int i = cost.size() - 3; i >= ..
https://leetcode.com/problems/climbing-stairs/ Climbing Stairs - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com class Solution { public: int climbStairs(int n) { int a = 1, b = 1, temp = 0; for(int i = 2; i
내공얌냠
내공냠냠