leetcode ——34.在排序数组中查找元素的第一个和最后一个位置
时间:2019-10-08 19:06:46
收藏:0
阅读:99
class Solution: def searchRange(self, nums: List[int], target: int) -> List[int]: a=nums.count(target) if a==0: return [-1,-1] else: d=nums.index(target) if a==1: return [d,d] else: return [d,d+a-1]
执行用时 :112 ms, 在所有 Python3 提交中击败了77.01%的用户
内存消耗 :15 MB, 在所有 Python3 提交中击败了5.30%的用户
别人有运行时间短的例子,但是我看不进去了,只能挑最简单的方法来做了。。。
脑子已经运行不动了。
——2019.10.8
原文:https://www.cnblogs.com/taoyuxin/p/11636758.html
评论(0)