511. 游戏玩法分析 I Posted on 2020-04-10 | In leetcode Words count in article: 205 | Reading time ≈ 1 题目活动表 Activity: 1234567891011+--------------+---------+| Column Name | Type |+--------------+---------+| player_id | int || device_id | ... Read more »
577. 员工奖金 Posted on 2020-04-10 | In leetcode Words count in article: 111 | Reading time ≈ 1 题目选出所有 bonus < 1000 的员工的 name 及其 bonus。 Employee 表单 123456789+-------+--------+-----------+--------+| empId | name | supervisor| salary |+------- ... Read more »
586. 订单最多的客户 Posted on 2020-04-10 | In leetcode Words count in article: 250 | Reading time ≈ 1 题目在表 orders 中找到订单数最多客户对应的 customer_number 。 数据保证订单数最多的顾客恰好只有一位。 表 orders 定义如下: 123456789| Column | Type ||-------------------|-------- ... Read more »
700. 二叉搜索树中的搜索 Posted on 2020-04-10 | In leetcode Words count in article: 219 | Reading time ≈ 1 题目给定二叉搜索树(BST)的根节点 root 和一个整数值 val。 你需要在 BST 中找到节点值等于 val 的节点。 返回以该节点为根的子树。 如果节点不存在,则返回 null 。 示例 1: 12输入:root = [4,2,7,1,3], val = 2输出:[2,1,3] 示例2: ... Read more »
933. 最近的请求次数 Posted on 2020-04-10 | In leetcode Words count in article: 367 | Reading time ≈ 1 题目写一个 RecentCounter 类来计算最近的请求。 它只有一个方法:ping(int t),其中 t 代表以毫秒为单位的某个时间。 返回从 3000 毫秒前到现在的 ping 数。 任何处于 [t - 3000, t] 时间范围之内的 ping 都将会被计算在内,包括当前(指 t 时刻)的 ... Read more »
942. 增减字符串匹配 Posted on 2020-04-10 | In leetcode Words count in article: 259 | Reading time ≈ 1 题目给定只含 “I”(增大)或 “D”(减小)的字符串 S ,令 N = S.length。 返回 [0, 1, …, N] 的任意排列 A 使得对于所有 i = 0, …, N-1,都有: 如果 S[i] == "I",那么 A[i] < A[i+1] ... Read more »
977. 有序数组的平方 Posted on 2020-04-10 | In leetcode Words count in article: 541 | Reading time ≈ 2 题目给定一个按非递减顺序排序的整数数组 A,返回每个数字的平方组成的新数组,要求也按非递减顺序排序。 示例 1:12输入:[-4,-1,0,3,10]输出:[0,1,9,16,100] 示例2:12输入:arr1 = [1,4,2,3], arr2 = [-4,-3,6,10,20,30], d ... Read more »
1050. 合作过至少三次的演员和导演 Posted on 2020-04-10 | In leetcode Words count in article: 118 | Reading time ≈ 1 题目ActorDirector 表: 12345678+-------------+---------+| Column Name | Type |+-------------+---------+| actor_id | int || director_id | int ... Read more »
1051. 高度检查器 Posted on 2020-04-10 | In leetcode Words count in article: 418 | Reading time ≈ 1 题目学校在拍年度纪念照时,一般要求学生按照 非递减 的高度顺序排列。 请你返回能让所有学生以 非递减 高度排列的最小必要移动人数。 注意,当一组学生被选中时,他们之间可以以任何可能的方式重新排序,而未被选中的学生应该保持不动。 示例 1:12345678输入:heights = [1,1,4,2,1 ... Read more »
1082. 销售分析 I Posted on 2020-04-10 | In leetcode Words count in article: 220 | Reading time ≈ 1 题目产品表:Product 123456789+--------------+---------+| Column Name | Type |+--------------+---------+| product_id | int || product_name | varcha ... Read more »