日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Leet Code OJ 简单(二)

發(fā)布時間:2025/6/17 编程问答 45 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Leet Code OJ 简单(二) 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

20.?有效括號? 48ms

class Solution:def isValid(self, s):""":type s: str:rtype: bool"""if len(s) % 2 :return Falsebrackets = {'(': ')', '{': '}', '[': ']'}stack = []for i in s:if i in brackets:stack.append(i)else:if not stack or brackets[stack.pop()] != i:return Falseif stack:return Falsereturn True

26.刪除排序數(shù)組中的重復(fù)項? 96ms

class Solution:def removeDuplicates(self, nums):""":type nums: List[int]:rtype: int"""if len(nums) <= 1:return len(nums)s = 0for f in range(1, len(nums)):if nums[s] != nums[f]:s += 1nums[s] = nums[f]return s + 1

27.移除元素? 56ms

class Solution:def removeElement(self, nums, val):""":type nums: List[int]:type val: int:rtype: int"""if val not in nums:return len(nums)while val in nums:nums.remove(val)return len(nums)

28.實現(xiàn)strStr()? 48ms

class Solution:def strStr(self, haystack, needle):""":type haystack: str:type needle: str:rtype: int"""if not needle:return 0if needle not in haystack:return -1else:return haystack.index(needle)

35.搜索插入位置? 48ms

class Solution:def searchInsert(self, nums, target):""":type nums: List[int]:type target: int:rtype: int"""if target in nums:return nums.index(target)if target < nums[0]:return 0if target > nums[-1]:return len(nums)for i in range(len(nums)-1):if nums[i]<target and nums[i+1]>target:return i+1

?

轉(zhuǎn)載于:https://www.cnblogs.com/FanMLei/p/10501003.html

總結(jié)

以上是生活随笔為你收集整理的Leet Code OJ 简单(二)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。