最新 最热

Leetcode-09-solution

判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。

2021-06-17
0

520. 检测大写字母

给定一个单词,你需要判断单词的大写使用是否正确。 我们定义,在以下情况时,单词的大写用法是正确的: 全部字母都是大写,比如"USA"。 单词中所有字母都不是大写,比如"leetcode"。 如果单词不只含有一个字母,只有首字母大写, 比...

2021-06-01
0

剑指 Offer 65. 不用加减乘除做加法

刷爆Leetcode剑指offer第一天 思路:见图解 class Solution {public: int add(int a, int b) { // 后续

2021-05-18
0

Leetcode 1723. 完成所有工作的最短时间 (dfs,剪枝)

class Solution {public: int ans=INT_MAX,sum[13]={0}; int minimumTimeRequired(vector<int>& jobs, int k) { dfs(0,k,sum,jobs,0,0); return ...

2021-05-10
1

Leetcode 618. 学生地理信息报告(分组行转列)

select min(case when continent='America' then name end) America, min(case when continent='Asia' then name end)Asia, min(case when continent='Europe...

2021-05-06
0

Leetcode No.204 计数质数

示例 1: 输入:n = 10 输出:4 解释:小于 10 的质数一共有 4 个, 它们是 2, 3, 5, 7 。

2021-05-06
0

Leetcode 612. 平面上的最近距离

select round( pow(pow(p1.x-p2.x,2)+pow(p1.y-p2.y,2),1/2),2 ) shortest from point_2d p1 inner join point_2d p2 where p1.x<>p2.x ...

2021-04-30
0

Leetcode 610. 判断三角形

select * , case when x+y>z and y+z>x and x+z>y then 'Yes' else 'No' end triangle from triangle

2021-04-29
0

Leetcode 608. 树节点(case when)

select id, case when p_id is null then 'Root' when id in (select p_id from tree) then 'Inner' else 'Leaf' end typefrom tree

2021-04-28
1

Leetcode 607. 销售员(经典嵌套子查询)

select name from salesperson s where sales_id not in ( select sales_id from orders where com_id=( ...

2021-04-27
0