摘要: /* * 给定一个数组 nums 和一个值 val,你需要原地移除所有数值等于 val 的元素,返回移除后数组的新长度。 不要使用额外的数组空间,你必须在原地修改输入数组并在使用 O(1) 额外空间的条件下完成。 元素的顺序可以改变。你不需要考虑数组中超出新长度后面的元素。 示例 1: 给定 num 阅读全文
posted @ 2020-01-17 16:26 小傻孩丶儿 阅读(177) 评论(0) 推荐(0) 编辑
摘要: /** * * 示例 1: * * 给定数组 nums = [1,1,2], * * 函数应该返回新的长度 2, 并且原数组 nums 的前两个元素被修改为 1, 2。 * * 你不需要考虑数组中超出新长度后面的元素。 示例 2: * * 给定 nums = [0,0,1,1,1,2,2,3,3,4 阅读全文
posted @ 2020-01-17 15:33 小傻孩丶儿 阅读(200) 评论(0) 推荐(0) 编辑
摘要: import java.util.ArrayList; import java.util.List; /** * 合并 k 个排序链表,返回合并后的排序链表。请分析和描述算法的复杂度。 示例: 输入: [ 1->4->5, 1->3->4, 2->6 ] 输出: 1->1->2->3->4->4-> 阅读全文
posted @ 2020-01-16 09:03 小傻孩丶儿 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 有一个courses 表 ,有: student (学生) 和 class (课程)。 请列出所有超过或等于5名学生的课。 例如,表: + + + | student | class | + + + | A | Math | | B | English | | C | Math | | D | Bi 阅读全文
posted @ 2020-01-15 13:38 小傻孩丶儿 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 这里有张 World 表 + + + + + + | name | continent | area | population | gdp | + + + + + + | Afghanistan | Asia | 652230 | 25500100 | 20343000 | | Albania | 阅读全文
posted @ 2020-01-15 13:31 小傻孩丶儿 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-01-15 11:04 小傻孩丶儿 阅读(140) 评论(0) 推荐(0) 编辑
摘要: Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: [ 阅读全文
posted @ 2020-01-14 16:44 小傻孩丶儿 阅读(134) 评论(0) 推荐(0) 编辑
摘要: import java.util.Stack; /* * Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An 阅读全文
posted @ 2020-01-14 11:22 小傻孩丶儿 阅读(104) 评论(0) 推荐(0) 编辑
摘要: select t.request_at Day, ( round(count(if(status != 'completed', status, null)) / count(status), 2) ) as 'Cancellation Rate' from Users u inner join T 阅读全文
posted @ 2020-01-14 09:33 小傻孩丶儿 阅读(197) 评论(0) 推荐(0) 编辑
摘要: Given a Weather table, write a SQL query to find all dates' Ids with higher temperature compared to its previous (yesterday's) dates. + + + + | Id(INT 阅读全文
posted @ 2020-01-13 08:54 小傻孩丶儿 阅读(156) 评论(0) 推荐(0) 编辑
摘要: # Write your MySQL query statement below --题意:删除重复的邮箱,保留重复中邮箱id最小的 --逆向思维,删除每个邮箱中不是最小的 DELETE FROM person WHERE id NOT IN ( SELECT need.id FROM ( SELE 阅读全文
posted @ 2020-01-12 16:49 小傻孩丶儿 阅读(216) 评论(0) 推荐(0) 编辑
摘要: SELECT d.Name AS 'Department', e1.Name AS 'Employee', e1.Salary FROM Employee e1 JOIN Department d ON e1.DepartmentId = d.Id WHERE --子查询 逆向思维 3 > (SEL 阅读全文
posted @ 2020-01-12 15:22 小傻孩丶儿 阅读(107) 评论(0) 推荐(0) 编辑
摘要: import java.util.ArrayList; import java.util.List; /** * Given an array nums of n integers and an integer target, are there elements * a, b, c, and d 阅读全文
posted @ 2020-01-12 14:47 小傻孩丶儿 阅读(145) 评论(0) 推荐(0) 编辑
摘要: import java.util.ArrayList; import java.util.LinkedList; import java.util.List; /* * Given a string containing digits from 2-9 inclusive, return all p 阅读全文
posted @ 2020-01-12 14:15 小傻孩丶儿 阅读(171) 评论(0) 推荐(0) 编辑
摘要: Employee 表包含所有员工信息,每个员工有其对应的 Id, salary 和 department Id。 + + + + + | Id | Name | Salary | DepartmentId | + + + + + | 1 | Joe | 70000 | 1 | | 2 | Henry 阅读全文
posted @ 2020-01-10 16:45 小傻孩丶儿 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 某网站包含两个表,Customers 表和 Orders 表。编写一个 SQL 查询,找出所有从不订购任何东西的客户。 Customers 表: + + + | Id | Name | + + + | 1 | Joe | | 2 | Henry | | 3 | Sam | | 4 | Max | + 阅读全文
posted @ 2020-01-10 16:09 小傻孩丶儿 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 三数之和 import java.util.ArrayList;import java.util.List;/* * Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 阅读全文
posted @ 2020-01-10 15:28 小傻孩丶儿 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 气气气气气气气死了!万万没想到,这些病都是被气出来的… 本文专家:汪小欢,复旦大学医学博士 常常听有人抱怨说:生活就是起起落落落落落落落…… 假如生活欺骗了你,有的人可能就会像秋天的菊花——想开了,而很大一部分人就会陷在自己的情绪里生闷气。 生气不利于家庭幸福、关系和睦和工作的开展,也对健康有很大危 阅读全文
posted @ 2020-01-08 17:16 小傻孩丶儿 阅读(193) 评论(0) 推荐(0) 编辑
摘要: /* * Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Input: 121 Output 阅读全文
posted @ 2020-01-08 16:39 小傻孩丶儿 阅读(113) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-01-08 14:16 小傻孩丶儿 阅读(0) 评论(0) 推荐(0) 编辑