码迷,mamicode.com
首页 >  
搜索关键字:problems    ( 6275个结果
docker desktop troubleshooting
https://docs.docker.com/docker-for-windows/troubleshoot/ This page contains information on how to diagnose and troubleshoot problems, send logs and co ...
分类:其他好文   时间:2020-06-15 13:44:07    阅读次数:90
Maven 依赖jar包报错
错误信息 [ERROR] Some problems were encountered while processing the POMs:'dependencies.dependency.version' for org.springframework.cloud:spring-cloud-sta ...
分类:编程语言   时间:2020-06-15 12:12:29    阅读次数:78
LeetCode 014. 最长公共前缀
地址 https://leetcode-cn.com/problems/longest-common-prefix/ 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。 示例 1: 输入: ["flower","flow","flight"] 输出: "fl" ...
分类:其他好文   时间:2020-06-15 09:38:05    阅读次数:47
pta 7-9 旅游规划 floyd
题目::https://pintia.cn/problem-sets/15/problems/717 #include<iostream> using namespace std; const int N = 505 ; const int MAX = 1000000000 ; int n,m,s, ...
分类:其他好文   时间:2020-06-15 00:04:00    阅读次数:76
kruskal
题目:https://pintia.cn/problem-sets/15/problems/718 #include<iostream> #include<algorithm> #include<vector> using namespace std ; struct mat{ int a,b,c; ...
分类:其他好文   时间:2020-06-14 23:20:59    阅读次数:69
282. Expression Add Operators
package LeetCode_282 /** * 282. Expression Add Operators * https://leetcode.com/problems/expression-add-operators/description/ * * Given a string that ...
分类:其他好文   时间:2020-06-14 20:59:44    阅读次数:62
查找重复的电子邮箱-leetcode
查找重复的电子邮箱 sql 编程 1. 地址 https://leetcode-cn.com/problems/duplicate-emails/ 2. 解法 内连接,或者多表查询 email 相同,但是 id 不同的行 select distinct p1.Email from Person p1 ...
分类:其他好文   时间:2020-06-14 15:12:25    阅读次数:86
从不订购的客户-leetcode
从不订购的客户 sql 编程 1. 地址 https://leetcode-cn.com/problems/customers-who-never-order/ 2. 解法 子查询 select Name as Customers from Customers where Id not in ( s ...
分类:其他好文   时间:2020-06-14 14:29:06    阅读次数:76
PAT高效技巧算法---1040 有几个PAT (25分)
1040 有几个PAT (25分) 和1045快排那个思想很像 左边、右边的分别累加在数组中存入 #include<iostream> #include<vector> #include<cctype> #include<map> #include<set> #include<sstream> #i ...
分类:编程语言   时间:2020-06-14 10:47:12    阅读次数:75
227. Basic Calculator II
package LeetCode_227 import java.util.* /** * 227. Basic Calculator II * https://leetcode.com/problems/basic-calculator-ii/description/ * * Implement ...
分类:其他好文   时间:2020-06-13 22:58:15    阅读次数:72
6275条   上一页 1 ... 44 45 46 47 48 ... 628 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!