摘要: 有一堆石头,每块石头的重量都是正整数。 每一回合,从中选出两块 最重的 石头,然后将它们一起粉碎。假设石头的重量分别为 x 和 y,且 x <= y。那么粉碎的可能结果如下: 如果 x == y,那么两块石头都会被完全粉碎;如果 x != y,那么重量为 x 的石头将会完全粉碎,而重量为 y 的石头 阅读全文
posted @ 2020-09-08 14:08 XXXSANS 阅读(194) 评论(0) 推荐(0) 编辑
摘要: Python – Itertools Combinations() function Itertool is a module of Python which is used to creation of iterators which helps us in efficient looping i 阅读全文
posted @ 2020-09-08 11:39 XXXSANS 阅读(848) 评论(0) 推荐(0) 编辑
摘要: 给定包含多个点的集合,从其中取三个点组成三角形,返回能组成的最大三角形的面积。 示例:输入: points = [[0,0],[0,1],[1,0],[0,2],[2,0]]输出: 2解释: 这五个点如下图所示。组成的橙色三角形是最大的,面积为2。 注意: 3 <= points.length <= 阅读全文
posted @ 2020-09-08 11:37 XXXSANS 阅读(129) 评论(0) 推荐(0) 编辑
摘要: str.format() is one of the string formatting methods in Python3, which allows multiple substitutions and value formatting. This method lets us concate 阅读全文
posted @ 2020-09-08 11:20 XXXSANS 阅读(208) 评论(0) 推荐(0) 编辑
摘要: The divmod() method takes two numbers and returns a pair of numbers (a tuple) consisting of their quotient and remainder. The syntax of divmod() is: d 阅读全文
posted @ 2020-09-08 11:15 XXXSANS 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 给定一个由 4 位数字组成的数组,返回可以设置的符合 24 小时制的最大时间。 最小的 24 小时制时间是 00:00,而最大的是 23:59。从 00:00 (午夜)开始算起,过得越久,时间越大。 以长度为 5 的字符串返回答案。如果不能确定有效时间,则返回空字符串。 示例 1: 输入:[1,2, 阅读全文
posted @ 2020-09-08 11:14 XXXSANS 阅读(216) 评论(0) 推荐(0) 编辑