LeetCode题解(1033):连续移动石子直到连续(Python)
发布日期:2021-06-29 19:55:16 浏览次数:3 分类:技术文章

本文共 514 字,大约阅读时间需要 1 分钟。

题目:(简单)

解法 时间复杂度 空间复杂度 执行用时
Ans 1 (Python) O ( 1 ) O(1) O(1) O ( 1 ) O(1) O(1) 40ms (72.92%)
Ans 2 (Python)
Ans 3 (Python)

LeetCode的Python执行用时随缘,只要时间复杂度没有明显差异,执行用时一般都在同一个量级,仅作参考意义。

解法一:

def numMovesStones(self, a: int, b: int, c: int) -> List[int]:    t = sorted([a, b, c])    d1 = t[2] - t[1] - 1    d2 = t[1] - t[0] - 1    maximum = d1 + d2    if d1 == 0 and d2 == 0:        minimum = 0    elif d1 == 0 or d2 == 0 or d1 == 1 or d2 == 1:        minimum = 1    else:        minimum = 2    return [minimum, maximum]

转载地址:https://dataartist.blog.csdn.net/article/details/107101747 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:LeetCode题解(1037):判断三个点是否为直线(Python)
下一篇:LeetCode题解(1030):距离顺序排序矩阵单元格(Python)

发表评论

最新留言

哈哈,博客排版真的漂亮呢~
[***.90.31.176]2024年04月10日 02时31分39秒