摘要: 题目如下: Given a list of folders, remove all sub-folders in those folders and return in any order the folders after removing. If a folder[i] is located w 阅读全文
posted @ 2019-10-21 15:02 seyjs 阅读(532) 评论(0) 推荐(0) 编辑
摘要: 题目如下: You are given an array coordinates, coordinates[i] = [x, y], where [x, y] represents the coordinate of a point. Check if these points make a str 阅读全文
posted @ 2019-10-21 14:58 seyjs 阅读(590) 评论(0) 推荐(0) 编辑
摘要: 题目如下: You have some coins. The i-th coin has a probability prob[i] of facing heads when tossed. Return the probability that the number of coins facing 阅读全文
posted @ 2019-10-21 14:53 seyjs 阅读(697) 评论(2) 推荐(1) 编辑
摘要: 题目如下: 你是一名行政助理,手里有两位客户的空闲时间表:slots1 和 slots2,以及会议的预计持续时间 duration,请你为他们安排合适的会议时间。 「会议时间」是两位客户都有空参加,并且持续时间能够满足预计时间 duration 的 最早的时间间隔。 如果没有满足要求的会议时间,就请 阅读全文
posted @ 2019-10-21 14:46 seyjs 阅读(967) 评论(0) 推荐(1) 编辑
摘要: 题目如下: 解题思路:题目很简单。先对数组排序,根据最大值和最小值即可求出公差,然后遍历数组,计算相邻元素的差,如果差不等于公差,即表示数字缺失。 代码如下: 阅读全文
posted @ 2019-10-21 14:41 seyjs 阅读(434) 评论(0) 推荐(1) 编辑