12 2020 档案

摘要:link class Solution { public: int boxDelivering(vector<vector<int>>& boxes, int portsCount, int maxBoxes, int maxWeight) { int n=boxes.size(); vector< 阅读全文
posted @ 2020-12-14 10:52 feibilun 阅读(232) 评论(0) 推荐(0)
摘要:link class Solution { public: int stoneGameVI(vector<int>& aliceValues, vector<int>& bobValues) { int n=aliceValues.size(); vector<int> sum(n); for(in 阅读全文
posted @ 2020-12-14 08:28 feibilun 阅读(124) 评论(0) 推荐(0)
摘要:select user_id, concat(upper(substring(u.name,1,1)),lower(substring(u.name,2))) as name from users u order by user_id -- CONCAT(str1, str2):字符连接函数 -- 阅读全文
posted @ 2020-12-09 09:34 feibilun 阅读(162) 评论(0) 推荐(0)