1. 首页
  2. 数据库
  3. 其它
  4. leetcode 225 Implement Stack using Queues

leetcode 225 Implement Stack using Queues

上传者: 2020-12-23 04:15:48上传 PDF文件 21.29KB 热度 17次
leetcode 225 Implement Stack using Queues leetcode 2020年3月 每日一题打卡 思路: python 细节: 查找list中某元素的位置:list.index(i) 向下取整:int() 代码: class Solution(object): def majorityElement(self, nums): """ :type nums: List[int] :rtype: int """ tag=[] times=[] i
用户评论