力扣刷题记录——python

作者: LeslieFind | 来源:发表于2021-06-09 21:39 被阅读0次

    1、range:

    range(10,0,-1)
    说明:从10到1

    2、stack:

    例题:
    有效的括号:https://leetcode-cn.com/problems/valid-parentheses/
    下一个更大的元素:https://leetcode-cn.com/problems/next-greater-element-i/
    先进后出
    stack=[]
    if stack[-1] == ??? #判断栈中最上面的元素是否...
    stack.pop() #取出最上面的元素
    stack.append(i) #放入栈中
    善用while循环

    3、any()

    例题:最长公共前缀:https://leetcode-cn.com/problems/longest-common-prefix/
    any() 函数用于判断给定的可迭代参数 iterable 是否全部为 False,则返回 False,如果有一个为 True,则返回 True

    相关文章

      网友评论

        本文标题:力扣刷题记录——python

        本文链接:https://www.haomeiwen.com/subject/peryeltx.html